chore(utils): remove split_limit function

This commit is contained in:
2026-03-11 19:47:44 +00:00
parent 0658713f42
commit 12cbc24074
2 changed files with 1 additions and 5 deletions

View File

@@ -50,10 +50,6 @@ def get_request_filters() -> dict:
return filters
def split_limit(limit: int, n: int) -> list[int]:
base, remainder = divmod(limit, n)
return [base + (1 if i < remainder else 0) for i in range(n)]
def get_env(name: str) -> str:
value = os.getenv(name)
if not value: