Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
illvart committed Jul 6, 2024
1 parent be0d520 commit 4946beb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Generate STRING_SESSION at https://t.me/strgen_bot (pyrofork).
```sh
git pull \
&& docker system prune -f \
&& docker compose up --detach --build \
&& docker compose up --detach --build --force-recreate \
&& docker compose logs -f
```

Expand Down
2 changes: 1 addition & 1 deletion ds/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Var:
API_ID: int = int(getenv("API_ID", "0").strip())
API_HASH: str = getenv("API_HASH", "").strip()
STRING_SESSION: str = getenv("STRING_SESSION", "").strip()
WORKERS: int = int(getenv("WORKERS", str(WORKERS).strip()))
WORKERS: int = int(getenv("WORKERS", str(WORKERS)).strip())
HANDLER: str = getenv("HANDLER", "").strip()
IS_STARTUP: bool = False
DS_TASKS: ClassVar[dict[int, set[int]]] = {i: set() for i in range(10)}
Expand Down

0 comments on commit 4946beb

Please sign in to comment.