aboutsummaryrefslogtreecommitdiff
path: root/src/db_handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/db_handler.py')
-rw-r--r--src/db_handler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/db_handler.py b/src/db_handler.py
index 660e00a..673431d 100644
--- a/src/db_handler.py
+++ b/src/db_handler.py
@@ -7,10 +7,7 @@ import sqlite3
logger = logging.getLogger(__name__) # Set the logger name, to the name of the module
-@dataclass
class DBHandler:
- config: dict
-
def con_factory(self) -> sqlite3.Connection:
con = sqlite3.connect("blog.node5.net.db")
return con