Skip to content

Commit

Permalink
flake8 fix: missing spaces around operator in f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbreckenridge committed Feb 10, 2024
1 parent 17a85f8 commit d17f778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browserexport/save.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


def _progress(status: str, remaining: int, total: int) -> None:
logger.debug(f"Copied {total-remaining} of {total} database pages...")
logger.debug(f"Copied {total - remaining} of {total} database pages...")


def _sqlite_backup(src: PathIsh, dest: Optional[Path]) -> Optional[sqlite3.Connection]:
Expand Down

0 comments on commit d17f778

Please sign in to comment.