Skip to content

Commit

Permalink
fix pyflake indent issues 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ukablan-wpc committed Sep 30, 2024
1 parent 238b5db commit af201c7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pleskdistup/actions/distupgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,11 @@ def name(self, val: str) -> None:

def _do_check(self) -> bool:
log.debug(f"Checking leftover repo.list files")
archived_files = [f for f in
archived_files = [
f for f in
CheckAptReposBackups.get_all_repo_list_files(self.sources_list_path, self.sources_list_d_path)
if files.backup_exists(f)]
if files.backup_exists(f)
]
if archived_files:
self.description = self.description.format(",".join(archived_files))
return False
Expand Down

0 comments on commit af201c7

Please sign in to comment.