Skip to content

Commit

Permalink
Remove unused __version__ constant (Fixes #262)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Nov 30, 2021
1 parent ed4b1e2 commit e882f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engineio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
get_tornado_handler = None
ASGIApp = None

__all__ = ['__version__', 'Server', 'WSGIApp', 'Middleware', 'Client']
__all__ = ['Server', 'WSGIApp', 'Middleware', 'Client']
if AsyncServer is not None: # pragma: no cover
__all__ += ['AsyncServer', 'ASGIApp', 'get_tornado_handler',
'AsyncClient'],

0 comments on commit e882f59

Please sign in to comment.