Skip to content

Commit c26fed5

Browse files
committed
Formatting...
1 parent cb04f49 commit c26fed5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

topgg/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Colors = Dict[str, int]
77
Colours = Colors
88

9+
910
def camel_to_snake(string: str) -> str:
1011
return "".join(["_" + c.lower() if c.isupper() else c for c in string]).lstrip("_")
1112

0 commit comments

Comments
 (0)