This commit is contained in:
Manu 2024-03-16 18:30:13 +00:00
parent 7bbf372c12
commit 6d6351a5dc
2 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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):