Skip to content

Commit 6d6351a

Browse files
committed
Lint 2
1 parent 7bbf372 commit 6d6351a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ extension-pkg-whitelist=PyQt6
105105
load-plugins=
106106

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

110110
[pylint.format]
111111
max-line-length=120

src/vorta/views/workers/mount_points_worker.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
import psutil
22
from PyQt6.QtCore import QThread, pyqtSignal
33

4-
from vorta.utils import (
5-
SHELL_PATTERN_ELEMENT,
6-
borg_compat,
7-
)
4+
from vorta.utils import SHELL_PATTERN_ELEMENT, borg_compat
85

96
SIZE_DECIMAL_DIGITS = 1
107

118

129
class MountPointsWorker(QThread):
10+
1311
signal = pyqtSignal(dict, list)
1412

1513
def __init__(self, repo_url):

0 commit comments

Comments
 (0)