forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-13 16:55:34 +02:00
parent 3e4eaabdc7
commit c5600f8d21
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ SITE_NAME = environ.get("SITE_NAME", "").strip()
@app.get("/sexing")
def nig():
first = time.time()
sex1 = g.db.query(User).filter(User.id == 1).all()
sex = [c for c in g.db.query(User).all() if c.id == 1]
print(time.time() - first)
first2 = time.time()
sex2 = g.db.query(User).all()