Skip to content

Commit

Permalink
Import casing functions explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlls committed Mar 20, 2022
1 parent 9431c8f commit 261c782
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion casefy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
from .casefy import *
from .casefy import (
camelcase,
pascalcase,
snakecase,
constcase,
kebabcase,
upperkebabcase,
separatorcase,
sentencecase,
titlecase,
alphanumcase,
lowercase,
uppercase,
capitalcase
)

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

0 comments on commit 261c782

Please sign in to comment.