Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iQuxLE committed Oct 24, 2024
1 parent b9aa15e commit 0c756ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/curategpt/store/duckdb_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import json
import logging
import os
import re
from dataclasses import dataclass, field
from typing import (
Any,
Expand Down
5 changes: 3 additions & 2 deletions src/curategpt/store/duckdb_connection_handler.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import logging
import duckdb
import os
import re
from pathlib import Path
from typing import Optional

import duckdb

logger = logging.getLogger(__name__)


Expand Down Expand Up @@ -103,4 +104,4 @@ def close(self) -> None:
self.conn.close()
logger.info("Database connection closed successfully")
except Exception as e:
logger.error(f"Error closing database connection: {e}")
logger.error(f"Error closing database connection: {e}")

0 comments on commit 0c756ed

Please sign in to comment.