Skip to content

Commit 1f4f8f7

Browse files
authored
Remove unused import of Optional in load.py
Removed unused import statement for Optional.
1 parent 07f5a9b commit 1f4f8f7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/etl/load.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import sqlite3
33
import os
44
# TODO (Find & Fix)
5-
from typing import Optional
65

76
def load(df: pd.DataFrame, db_path: str = "etl_data.db", table_name: str = "processed_data"):
87
"""
@@ -68,4 +67,4 @@ def load(df: pd.DataFrame, db_path: str = "etl_data.db", table_name: str = "proc
6867
conn.rollback()
6968
finally:
7069
if conn:
71-
conn.close()
70+
conn.close()

0 commit comments

Comments
 (0)