Skip to content

Commit

Permalink
chore: expose more functions at top level
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Nov 8, 2024
1 parent dd17040 commit ff7c321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/yamling/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
__version__ = "0.0.2"

import yaml
from yamling.load import load_yaml
from yamling.load import load_yaml, load_yaml_file, get_loader
from yamling.dump import dump_yaml


YAMLError = yaml.YAMLError # Reference for external libs that need to catch this error


__all__ = ["load_yaml", "dump_yaml", "YAMLError"]
__all__ = ["load_yaml", "dump_yaml", "YAMLError", "load_yaml_file", "get_loader"]

0 comments on commit ff7c321

Please sign in to comment.