mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
Apply isort to all python files (bfxapi/**/*.py).
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from typing import Dict, Any
|
||||
import json
|
||||
import re
|
||||
from typing import Any, Dict
|
||||
|
||||
import re, json
|
||||
|
||||
def _to_snake_case(string: str) -> str:
|
||||
return re.sub(r"(?<!^)(?=[A-Z])", "_", string).lower()
|
||||
|
||||
Reference in New Issue
Block a user