Skip to content

Commit

Permalink
remove default database 'mara' #67 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-schick authored Jan 31, 2023
1 parent 1090d22 commit f072dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mara_db/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from mara_db import dbs


def databases() -> {str: dbs.DB}:
def databases() -> typing.Dict[str, dbs.DB]:
"""The list of database connections to use, by alias"""
return {'mara': dbs.PostgreSQLDB(host='localhost', database='mara', user='root')}
return {}


def default_timezone() -> str:
Expand Down

0 comments on commit f072dcf

Please sign in to comment.