Skip to content

Commit

Permalink
ran black and update poetry.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Mustaballer committed Jul 4, 2023
1 parent 01eef24 commit 5e52b5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion openadapt/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ def export_recording(recording_id: int) -> str:
try:
original_db = os.environ["DB_FNAME"]
except KeyError:
logger.warning("Warning: The 'DB_FNAME' environment variable is not set in .env. Using default value: openadapt.db.")
logger.warning(
"Warning: The 'DB_FNAME' environment variable is not set in .env. Using default value: openadapt.db."
)
original_db = "openadapt.db"
sql, values = export_sql(recording_id)
timestamp, db_file_path = create_db(recording_id, sql, values)
Expand Down
1 change: 0 additions & 1 deletion openadapt/share.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def send_recording(recording_id: int) -> None:
logger.info(f"Deleted zip file of the recording: {zip_file_path}")



def receive_recording(wormhole_code: str) -> None:
"""Receive a recording zip file from another computer using a wormhole code.
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e52b5c

Please sign in to comment.