Skip to content

Commit

Permalink
Merge pull request python-poetry#132 from cjolowicz/reexport
Browse files Browse the repository at this point in the history
Fix missing re-export of public API in __init__.py
  • Loading branch information
frostming authored Dec 17, 2021
2 parents 629c073 + 3a30227 commit cb2ff88
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion tomlkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,28 @@
from .api import ws


__version__ = "0.7.0"
__version__ = "0.7.2"
__all__ = [
"aot",
"array",
"boolean",
"comment",
"date",
"datetime",
"document",
"dumps",
"float_",
"inline_table",
"integer",
"item",
"key",
"key_value",
"loads",
"nl",
"parse",
"string",
"table",
"time",
"value",
"ws",
]

0 comments on commit cb2ff88

Please sign in to comment.