Skip to content

Commit

Permalink
Merge pull request #5 from richtea/feature/export-symbols
Browse files Browse the repository at this point in the history
Export all casefy symbols through __all__
  • Loading branch information
dmlls authored Nov 27, 2024
2 parents ddeb175 + 042b85e commit 8e9ebd9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions casefy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,19 @@

# Don't expose the submodule itself
del globals()["casefy"]

__all__ = [
"camelcase",
"pascalcase",
"snakecase",
"constcase",
"kebabcase",
"upperkebabcase",
"separatorcase",
"sentencecase",
"titlecase",
"alphanumcase",
"lowercase",
"uppercase",
"capitalcase"
]

0 comments on commit 8e9ebd9

Please sign in to comment.