Skip to content

Commit fbaa874

Browse files
authored
Merge pull request #12 from bigchaindb/fix-init-export-all-declaration
Fix typo with init.py's __all__
2 parents 54fc0c2 + 4cbdc06 commit fbaa874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipld/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from ipld.ipld import LINK_TAG, LINK_SYMBOL, marshal, multihash, unmarshal
22

3-
__all_ = ['LINK_TAG', 'LINK_SYMBOL', 'marshal', 'multihash', 'unmarshal']
3+
__all__ = ['LINK_TAG', 'LINK_SYMBOL', 'marshal', 'multihash', 'unmarshal']
44

55
__version__ = '0.0.1'

0 commit comments

Comments
 (0)