Skip to content

Commit 1eced64

Browse files
committed
Regenerate the requirements.txt
1 parent 8af6638 commit 1eced64

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

app/routers/resources/res_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async def get_posts_as_json(page: int, db: Session = Depends(get_db)):
3030
for x in posts_from_db:
3131
user_uuid = get_user_uuid_by_name(user_name=x.user_name, db=db)
3232
admin_uuid = get_admin_uuid_by_name(user_name=x.user_name, db=db)
33-
print(user_uuid)
33+
3434
temp_dict = {
3535
"id": x.id,
3636
"description": x.description,

requirements.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
aiosqlite==0.18.0
22
anyio==3.6.2
33
bcrypt==4.0.1
4+
certifi==2023.5.7
5+
charset-normalizer==3.1.0
46
click==8.1.3
57
databases==0.7.0
68
ecdsa==0.18.0
@@ -14,13 +16,14 @@ pyasn1==0.4.8
1416
pydantic==1.10.4
1517
python-jose==3.3.0
1618
python-multipart==0.0.5
19+
pytz==2023.3
20+
requests==2.31.0
1721
rsa==4.9
1822
six==1.16.0
1923
sniffio==1.3.0
2024
SQLAlchemy==1.4.46
2125
starlette==0.22.0
2226
typing_extensions==4.4.0
27+
tzlocal==5.0.1
28+
urllib3==2.0.3
2329
uvicorn==0.20.0
24-
25-
pytz~=2023.3
26-
tzlocal~=5.0.1

0 commit comments

Comments
 (0)