Skip to content

Commit

Permalink
Avoid using wildcard imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mnogu committed May 5, 2023
1 parent 59448eb commit 9c8f766
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions chitose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .object import *
from .record import *
from .xrpc import *
from .object import Object
from .record import Record
from .xrpc import call

__all__ = ['Object', 'Record', 'call']

0 comments on commit 9c8f766

Please sign in to comment.