mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 09:52:37 +02:00
chore: Do not use fstrings without placeholders
> f-strings are a convenient way to format strings, but they are not > necessary if there are no placeholder expressions to format. In this > case, a regular string should be used instead, as an f-string without > placeholders can be confusing for readers, who may expect such a > placeholder to be present. > > — [ruff docs](https://docs.astral.sh/ruff/rules/f-string-missing-placeholders/)
This commit is contained in:
parent
5aa4863b52
commit
99f1e15fd2
6 changed files with 16 additions and 15 deletions
|
@ -78,12 +78,12 @@ class MaxPagesException(PagesException):
|
||||||
|
|
||||||
class MaxPageWidthException(PagesException):
|
class MaxPageWidthException(PagesException):
|
||||||
error_code = ERROR_SHIFT + 44
|
error_code = ERROR_SHIFT + 44
|
||||||
error_message = f"A page exceeded the maximum width."
|
error_message = "A page exceeded the maximum width."
|
||||||
|
|
||||||
|
|
||||||
class MaxPageHeightException(PagesException):
|
class MaxPageHeightException(PagesException):
|
||||||
error_code = ERROR_SHIFT + 45
|
error_code = ERROR_SHIFT + 45
|
||||||
error_message = f"A page exceeded the maximum height."
|
error_message = "A page exceeded the maximum height."
|
||||||
|
|
||||||
|
|
||||||
class PageCountMismatch(PagesException):
|
class PageCountMismatch(PagesException):
|
||||||
|
|
|
@ -824,7 +824,7 @@ class SettingsWidget(QtWidgets.QWidget):
|
||||||
|
|
||||||
if n_docs == 1:
|
if n_docs == 1:
|
||||||
self.start_button.setText("Convert to Safe Document")
|
self.start_button.setText("Convert to Safe Document")
|
||||||
self.docs_selected_label.setText(f"1 document selected")
|
self.docs_selected_label.setText("1 document selected")
|
||||||
else:
|
else:
|
||||||
self.start_button.setText("Convert to Safe Documents")
|
self.start_button.setText("Convert to Safe Documents")
|
||||||
self.docs_selected_label.setText(f"{n_docs} documents selected")
|
self.docs_selected_label.setText(f"{n_docs} documents selected")
|
||||||
|
|
|
@ -206,7 +206,7 @@ class UpdaterThread(QtCore.QThread):
|
||||||
current_time = self._get_now_timestamp()
|
current_time = self._get_now_timestamp()
|
||||||
last_check = self.dangerzone.settings.get("updater_last_check")
|
last_check = self.dangerzone.settings.get("updater_last_check")
|
||||||
if current_time < last_check + UPDATE_CHECK_COOLDOWN_SECS:
|
if current_time < last_check + UPDATE_CHECK_COOLDOWN_SECS:
|
||||||
log.debug(f"Cooling down update checks")
|
log.debug("Cooling down update checks")
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
@ -255,10 +255,10 @@ class UpdaterThread(QtCore.QThread):
|
||||||
previous run.
|
previous run.
|
||||||
2. In GitHub, by hitting the latest releases API.
|
2. In GitHub, by hitting the latest releases API.
|
||||||
"""
|
"""
|
||||||
log.debug(f"Checking for Dangerzone updates")
|
log.debug("Checking for Dangerzone updates")
|
||||||
latest_version = self.dangerzone.settings.get("updater_latest_version")
|
latest_version = self.dangerzone.settings.get("updater_latest_version")
|
||||||
if version.parse(get_version()) < version.parse(latest_version):
|
if version.parse(get_version()) < version.parse(latest_version):
|
||||||
log.debug(f"Determined that there is an update due to cached results")
|
log.debug("Determined that there is an update due to cached results")
|
||||||
return UpdateReport(
|
return UpdateReport(
|
||||||
version=latest_version,
|
version=latest_version,
|
||||||
changelog=self.dangerzone.settings.get("updater_latest_changelog"),
|
changelog=self.dangerzone.settings.get("updater_latest_changelog"),
|
||||||
|
@ -275,7 +275,7 @@ class UpdaterThread(QtCore.QThread):
|
||||||
"updater_last_check", self._get_now_timestamp(), autosave=True
|
"updater_last_check", self._get_now_timestamp(), autosave=True
|
||||||
)
|
)
|
||||||
|
|
||||||
log.debug(f"Checking the latest GitHub release")
|
log.debug("Checking the latest GitHub release")
|
||||||
report = self.get_latest_info()
|
report = self.get_latest_info()
|
||||||
log.debug(f"Latest version in GitHub is {report.version}")
|
log.debug(f"Latest version in GitHub is {report.version}")
|
||||||
if report.version and self.can_update(latest_version, report.version):
|
if report.version and self.can_update(latest_version, report.version):
|
||||||
|
@ -285,7 +285,7 @@ class UpdaterThread(QtCore.QThread):
|
||||||
)
|
)
|
||||||
return report
|
return report
|
||||||
|
|
||||||
log.debug(f"No need to update")
|
log.debug("No need to update")
|
||||||
return UpdateReport()
|
return UpdateReport()
|
||||||
|
|
||||||
##################
|
##################
|
||||||
|
|
|
@ -83,16 +83,16 @@ def main():
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--tag",
|
"--tag",
|
||||||
help=f"use the release with this tag",
|
help="use the release with this tag",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--release-id",
|
"--release-id",
|
||||||
help=f"use the release with this ID",
|
help="use the release with this ID",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--draft",
|
"--draft",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help=f"use the latest draft release",
|
help="use the latest draft release",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"file",
|
"file",
|
||||||
|
@ -116,7 +116,7 @@ def main():
|
||||||
elif args.release_id:
|
elif args.release_id:
|
||||||
release_id = args.release_id
|
release_id = args.release_id
|
||||||
else:
|
else:
|
||||||
log.debug(f"Getting the ID of the latest draft release")
|
log.debug("Getting the ID of the latest draft release")
|
||||||
release_id = get_latest_draft_release(token)
|
release_id = get_latest_draft_release(token)
|
||||||
log.debug(f"The latest draft release has ID '{release_id}'")
|
log.debug(f"The latest draft release has ID '{release_id}'")
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ def main():
|
||||||
# Read the zipfile from stdin
|
# Read the zipfile from stdin
|
||||||
zf = sys.stdin.buffer.read(size)
|
zf = sys.stdin.buffer.read(size)
|
||||||
if len(zf) < size:
|
if len(zf) < size:
|
||||||
say(f"Client closed the connection early")
|
say("Client closed the connection early")
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
with tempfile.NamedTemporaryFile(suffix=".zip") as t:
|
with tempfile.NamedTemporaryFile(suffix=".zip") as t:
|
||||||
|
@ -27,10 +27,11 @@ def main():
|
||||||
t.write(zf)
|
t.write(zf)
|
||||||
t.flush()
|
t.flush()
|
||||||
|
|
||||||
say(f"Importing the conversion module")
|
say("Importing the conversion module")
|
||||||
sys.path.insert(0, t.name)
|
sys.path.insert(0, t.name)
|
||||||
|
|
||||||
from dangerzone.conversion.doc_to_pixels import main
|
from dangerzone.conversion.doc_to_pixels import main
|
||||||
|
|
||||||
return asyncio.run(main())
|
return asyncio.run(main())
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ class QubesWait(Qubes):
|
||||||
return proc
|
return proc
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
|
|
||||||
raise RuntimeError(f"Disposable qube did not start within 30 seconds")
|
raise RuntimeError("Disposable qube did not start within 30 seconds")
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
|
|
Loading…
Reference in a new issue