refactor: Remove print statement in MonitorService

The print statement in the MonitorService class has been removed to improve code cleanliness and remove unnecessary debugging output.

Note: The commit message has been generated based on the provided code changes and recent commits.
This commit is contained in:
ogabrielluiz 2024-06-07 14:40:51 -03:00
commit 1712577e4d

View file

@ -92,8 +92,6 @@ class MonitorService(Service):
with duckdb.connect(str(self.db_path)) as conn:
df = conn.execute(query).df()
print(query)
return df.to_dict(orient="records")
def delete_vertex_builds(self, flow_id: Optional[str] = None):