Skip to content

Commit

Permalink
clean: top-level imports (closes #7)
Browse files Browse the repository at this point in the history
  • Loading branch information
metaist committed May 31, 2023
1 parent 77730dc commit d329d9f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/attrbox/__init__.py
Expand Up @@ -5,8 +5,10 @@
"""

# pkg
from .attrdict import AttrDict, __pdoc__ as doc1
from .attrlist import AttrList, __pdoc__ as doc2
from .attrdict import __pdoc__ as doc1
from .attrdict import AttrDict
from .attrlist import __pdoc__ as doc2
from .attrlist import AttrList

from .jsend import JSend

Expand Down
1 change: 1 addition & 0 deletions src/attrbox/attrdict.py
Expand Up @@ -417,6 +417,7 @@ def __lshift__(self, other: Mapping[str, Any]) -> AttrDict:


__pdoc__ = {
"AttrDict.__contains__": True,
"AttrDict.__getattr__": True,
"AttrDict.__setattr__": True,
"AttrDict.__delattr__": True,
Expand Down

0 comments on commit d329d9f

Please sign in to comment.