From 042b85e2dfd63e3721964a57a814c82059b840ee Mon Sep 17 00:00:00 2001 From: Rich Tebb Date: Sun, 24 Nov 2024 16:00:53 +0000 Subject: [PATCH] Export all casefy symbols through __all__ --- casefy/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/casefy/__init__.py b/casefy/__init__.py index d4ca51a..f457614 100644 --- a/casefy/__init__.py +++ b/casefy/__init__.py @@ -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" +]