We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb04f49 commit c26fed5Copy full SHA for c26fed5
topgg/types.py
@@ -6,6 +6,7 @@
6
Colors = Dict[str, int]
7
Colours = Colors
8
9
+
10
def camel_to_snake(string: str) -> str:
11
return "".join(["_" + c.lower() if c.isupper() else c for c in string]).lstrip("_")
12
0 commit comments