Skip to content

Commit

Permalink
Updated data_fetch.py for issue fix with poi
Browse files Browse the repository at this point in the history
  • Loading branch information
advaithsrao committed Oct 18, 2023
1 parent 4ae106c commit 21b045d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions utils/data_fetch.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from typing import List, Optional
import os
import pandas as pd
import glob
Expand All @@ -18,8 +19,8 @@
class PersonOfInterest:
def __init__(
self,
name_list: list[str] | None = None,
email_list: list[str] | None = None,
name_list: Optional[List[str]] = None,
email_list: Optional[List[str]] = None,
):
"""Class to operate with the person of interest data from config.ini file
"""
Expand Down

0 comments on commit 21b045d

Please sign in to comment.