Skip to content

Commit f4d8c4f

Browse files
committed
fix linting error
1 parent 3ca7990 commit f4d8c4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/seclab_taskflows/mcp_servers/gh_file_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __repr__(self):
5757
try:
5858
Base.metadata.create_all(engine, tables=[SearchResults.__table__])
5959
except Exception as e:
60-
logging.error(f"Database already exists: {e}") # only log here, as this error likely only happens in test
60+
logging.exception(f"Database already exists: {e}") # only log here, as this error likely only happens in test
6161

6262

6363
async def call_api(url: str, params: dict) -> str:

0 commit comments

Comments
 (0)