refactor: improve code formatting and organization across multiple files
This commit is contained in:
@@ -10,6 +10,7 @@ def to_camel(string: str) -> str:
|
||||
head, *tail = string.split("_")
|
||||
return head + "".join(part.capitalize() for part in tail)
|
||||
|
||||
|
||||
IdT = TypeVar("IdT", bound=str)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user