Skip to content

Commit

Permalink
Lint 2
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nu committed Mar 16, 2024
1 parent 7bbf372 commit 6d6351a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ extension-pkg-whitelist=PyQt6
load-plugins=

[pylint.messages control]
disable= W0503,W0511,C0301,R0903,R0201,W0212,C0114,C0115,C0116,C0103,E0611,E1120,C0415,R0914,R0912,R0915
disable= W0511,C0301,R0903,W0212,C0114,C0115,C0116,C0103,E0611,E1120,C0415,R0914,R0912,R0915

[pylint.format]
max-line-length=120
6 changes: 2 additions & 4 deletions src/vorta/views/workers/mount_points_worker.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import psutil
from PyQt6.QtCore import QThread, pyqtSignal

from vorta.utils import (
SHELL_PATTERN_ELEMENT,
borg_compat,
)
from vorta.utils import SHELL_PATTERN_ELEMENT, borg_compat

SIZE_DECIMAL_DIGITS = 1


class MountPointsWorker(QThread):

signal = pyqtSignal(dict, list)

def __init__(self, repo_url):
Expand Down

0 comments on commit 6d6351a

Please sign in to comment.