From 15551f4de0e4ea99594aa9b6092828f076706c00 Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Mon, 11 Jan 2021 09:49:20 +0100 Subject: [PATCH] Make __all__ list as usual and remove __all__ from modules --- graphit_event/__init__.py | 2 +- graphit_event/interface.py | 2 -- graphit_event/mixin.py | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/graphit_event/__init__.py b/graphit_event/__init__.py index b68f1b7..d2148e1 100644 --- a/graphit_event/__init__.py +++ b/graphit_event/__init__.py @@ -1,4 +1,4 @@ -__all__ = ('EventEmitterInterface', 'EventEmitterMixin') +__all__ = ['EventEmitterInterface', 'EventEmitterMixin'] from .interface import EventEmitterInterface from .mixin import EventEmitterMixin diff --git a/graphit_event/interface.py b/graphit_event/interface.py index 8b18970..939f1e4 100644 --- a/graphit_event/interface.py +++ b/graphit_event/interface.py @@ -1,5 +1,3 @@ -__all__ = ('EventEmitterInterface') - import abc from typing import Hashable, Callable diff --git a/graphit_event/mixin.py b/graphit_event/mixin.py index 971671c..dfc618b 100644 --- a/graphit_event/mixin.py +++ b/graphit_event/mixin.py @@ -1,5 +1,3 @@ -__all__ = ('EventEmitterMixin') - import uuid from typing import Hashable, Callable, MutableMapping, Mapping -- 2.34.1