Skip to content

Commit 351fe5c

Browse files
committed
explicit exports
1 parent 65cfb3e commit 351fe5c

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

channelfinder/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
from .CFDataTypes import Channel, Property, Tag
22
from .ChannelFinderClient import ChannelFinderClient
3+
4+
__all__ = ["Channel", "Property", "Tag", "ChannelFinderClient"]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from .CFPropertyManager import *
1+
from .CFPropertyManager import CFPropertyManager
2+
3+
__all__ = ["CFPropertyManager"]

channelfinder/util/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from .ChannelUtil import ChannelUtil
2+
3+
__all__ = ["ChannelUtil"]

0 commit comments

Comments
 (0)