removed some debugging

This commit is contained in:
Oscar Krause 2023-01-03 18:04:50 +01:00
parent ac811d5df7
commit 7b2428ea38
1 changed files with 0 additions and 1 deletions

View File

@ -41,7 +41,6 @@ class Origin(Base):
def create_or_update(engine: Engine, origin: "Origin"):
session = sessionmaker(bind=engine)()
entity = session.query(Origin).filter(Origin.origin_ref == origin.origin_ref).first()
print(entity)
if entity is None:
session.add(origin)
else: