Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
liammulh committed May 16, 2024
1 parent 87d8a2f commit b4c124a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/affiliation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from . import logger

DB_FILE = os.environ.get("AFFILS_DB_FILE")
print(DB_FILE)


class Affiliation:
Expand Down Expand Up @@ -65,6 +66,7 @@ def _row_to_affiliation(cls, row: tuple) -> object:
def all(cls) -> Optional[List]:
"""Return all affiliations in the database."""
all_affiliations = []
print(DB_FILE)
con = sqlite3.connect(DB_FILE) # type: ignore
cur = con.cursor()
try:
Expand Down

0 comments on commit b4c124a

Please sign in to comment.