Skip to content

Commit

Permalink
Merge pull request #1619 from freedomofpress/1486-fixup-mypy
Browse files Browse the repository at this point in the history
chore: remove unnecessary mypy `ignore` pragma
  • Loading branch information
gonzalo-bulnes authored Jan 5, 2023
2 parents 9da7754 + 244f5da commit 82032c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion securedrop_client/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def process(self) -> None:
self._clear()
return

if isinstance(self.current_job, PauseQueueJob): # type: ignore
if isinstance(self.current_job, PauseQueueJob):
self.paused.emit()
with self.condition_add_or_remove_job:
self.current_job = None
Expand Down

0 comments on commit 82032c2

Please sign in to comment.