Skip to content

Commit

Permalink
Export all casefy symbols through __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
richtea committed Nov 24, 2024
1 parent ddeb175 commit 042b85e
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 042b85e

Please sign in to comment.