Skip to content

Commit

Permalink
Uncommented host in model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wleong1 committed Apr 14, 2024
1 parent febb0c9 commit 1f323b3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ def __init__(self) -> None:
None
"""
self.path: str = "../individual_stocks_5yr/"
self.params: dict = {
# host="stocks-postgres",
"database":"stocks",
"user":"postgres",
"password":"123456",
"port":"5432"}
self.params: dict = {"host":"stocks-postgres",
"database":"stocks",
"user":"postgres",
"password":"123456",
"port":"5432"}

def generate_company_list(self) -> Tuple[list, list]:
"""
Expand Down

0 comments on commit 1f323b3

Please sign in to comment.