Skip to content

Commit

Permalink
Version 0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Nov 22, 2023
1 parent 11d6909 commit 7871d21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- marker-before-logo -->

<p align="center">
<img src="https://media.githubusercontent.com/media/riga/pymitter/master/assets/logo250.png" />
<img src="https://media.githubusercontent.com/media/riga/pymitter/master/assets/logo.png" width="400" />
</p>

<!-- marker-after-logo -->
Expand Down
6 changes: 1 addition & 5 deletions pymitter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,16 @@
__contact__ = "https://github.com/riga/pymitter"
__license__ = "BSD-3-Clause"
__status__ = "Development"
__version__ = "0.4.2"
__version__ = "0.5.0"
__all__ = ["EventEmitter", "Listener"]

import sys
import time
import collections
import fnmatch
import asyncio
from typing import Callable, Awaitable, Sequence, Any


LE_PY36 = sys.version_info[:2] <= (3, 6)


class EventEmitter(object):
"""
The EventEmitter class, ported from Node.js EventEmitter 2.
Expand Down

0 comments on commit 7871d21

Please sign in to comment.