Skip to content

Commit

Permalink
Merge pull request #106 from kastaid/dev
Browse files Browse the repository at this point in the history
update
  • Loading branch information
illvart authored Sep 12, 2024
2 parents 4c828c3 + 549e1a7 commit cca964c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion getter/plugins/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ async def _(kst):
local_now = datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
try:
await yy.eor(f"`Reading {csv_file} file...`")
async with aiofiles.open(csv_file, mode="r") as f:
async with aiofiles.open(csv_file) as f:
async for row in AsyncDictReader(f, delimiter=","):
user = {"user_id": int(row["user_id"]), "hash": int(row["hash"])}
users.append(user)
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ruff==0.6.3
ruff==0.6.4
black==24.8.0
isort==5.13.2
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cryptg==0.4.0
psutil==6.0.0
heroku3==5.2.1
GitPython==3.1.43
SQLAlchemy==2.0.32
SQLAlchemy==2.0.34
asyncpg==0.29.0
aiosqlite==0.20.0
sqlalchemy-json==0.7.0
Expand All @@ -19,7 +19,7 @@ Markdown==3.7
beautifulsoup4==4.12.3
emoji==2.12.1
Unidecode==1.3.8
validators==0.33.0
validators==0.34.0
telegraph==2.2.0
requests==2.32.3
lottie==0.7.0
Expand Down

0 comments on commit cca964c

Please sign in to comment.