Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jayamala17 committed Jan 22, 2025
1 parent fc5da02 commit 4d440cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dor/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def from_env(cls):
password=os.getenv("POSTGRES_PASSWORD", "postgres"),
host=os.getenv("POSTGRES_HOST", "db"),
database=os.getenv("POSTGRES_DATABSE", "dor_local"),
test_database=os.getenv("POSTGRES_TEST_DATABASE", "dor_test"),
test_database=os.getenv("POSTGRES_TEST_DATABASE", "dor_test")
)
)

Expand All @@ -35,7 +35,7 @@ def _make_database_engine_url(self, database: str):
username=self.database.user,
password=self.database.password,
host=self.database.host,
database=database,
database=database
)
return url

Expand Down

0 comments on commit 4d440cb

Please sign in to comment.