remove unwanted print

This commit is contained in:
Guille Gutierrez 2023-02-02 13:01:56 -05:00
parent 16adfaa1a8
commit 7bafbba240

View File

@ -116,7 +116,6 @@ class CityObject(Repository):
_city_object = self.session.execute(select(Model).where(
Model.name == name, Model.city_id == city_id
)).first()
print(city_id, name, _city_object)
if _city_object is None:
return None
return _city_object[0]