Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
Fix whitespace
Fix main window imports for linter
Update dlg_configureExplorer.py
  • Loading branch information
Liquid369 committed Jul 23, 2024
1 parent 9dc409e commit 055edea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/mainApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ def onSignVerifyMessage(self):
# Create Dialog
ui = SignMessage_dlg(self.mainWindow)
if ui.exec():
printDbg("Sign/Verify message...")
printDbg("Sign/Verify message...")
6 changes: 3 additions & 3 deletions src/mainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
from PyQt5.QtCore import pyqtSignal, Qt, QThread
from PyQt5.QtGui import QPixmap, QColor, QPalette, QTextCursor, QFont, QIcon
from PyQt5.QtWidgets import QWidget, QPushButton, QHBoxLayout, QGroupBox, QVBoxLayout, \
QFileDialog, QTextEdit, QTabWidget, QLabel, QSplitter, QAction, QMenuBar
QFileDialog, QTextEdit, QTabWidget, QLabel, QSplitter

from apiClient import ApiClient
from constants import starting_height, DefaultCache, wqueue
from hwdevice import HWdevice
from misc import printDbg, printException, printOK, getCallerName, getFunctionName, \
from misc import printDbg, printException, printOK, saveCacheSettings, getCallerName, getFunctionName, \
WriteStreamReceiver, now, persistCacheSetting, myPopUp_sb, getRemotePET4Lversion

from tabRewards import TabRewards
Expand Down Expand Up @@ -191,7 +191,7 @@ def getRPCserver(self):

def getServerListIndex(self, server):
return self.header.rpcClientsBox.findData(server)

def getExplorerListIndex(self, server):
return self.header.explorerClientsBox.findData(server)

Expand Down
2 changes: 1 addition & 1 deletion src/qt/dlg_configureExplorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# file LICENSE.txt or http://www.opensource.org/licenses/mit-license.php.

from PyQt5.QtWidgets import QDialog, QHBoxLayout, QVBoxLayout, QLabel, \
QListWidget, QFrame, QFormLayout, QComboBox, QLineEdit, QListWidgetItem, \
QListWidget, QFrame, QFormLayout, QLineEdit, QListWidgetItem, \
QWidget, QPushButton, QMessageBox

from misc import myPopUp
Expand Down

0 comments on commit 055edea

Please sign in to comment.