ruff format

This commit is contained in:
Kadir 2024-03-25 20:48:48 +00:00
parent 37e3e8ad6f
commit d777558b34
17 changed files with 411 additions and 368 deletions

View file

@ -1,10 +1,9 @@
from rec.db import RightmoveListing, session
from sqlalchemy import select
if __name__ == '__main__':
if __name__ == "__main__":
print("x")
x = select(RightmoveListing).where(RightmoveListing.price <600000)
x = select(RightmoveListing).where(RightmoveListing.price < 600000)
print("y")
d = list(session.execute(x))
print(d)