From 9834d736058d45098abf15c3e3e8783102a6ffdb Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Wed, 19 Jan 2022 18:11:41 +0200 Subject: [PATCH] Fix linter error introduced with fbeab3ab32702ea3c98a055d0de3cc2f0e3c8143 --- jmqtui/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jmqtui/setup.py b/jmqtui/setup.py index 092ab65..bfa66f5 100644 --- a/jmqtui/setup.py +++ b/jmqtui/setup.py @@ -1,5 +1,4 @@ from setuptools import setup -import os setup(name='joinmarketui', version='0.9.5dev', @@ -16,4 +15,5 @@ setup(name='joinmarketui', # The following command should be executed whenever `open_wallet_dialog.ui` is updated. # We have commented out this command so that we wouldn't require every user of JoinMarket-qt # to install the correct version of pyside2-uic. -# os.system('pyside2-uic jmqtui/open_wallet_dialog.ui -o jmqtui/open_wallet_dialog.py') +#import os +#os.system('pyside2-uic jmqtui/open_wallet_dialog.ui -o jmqtui/open_wallet_dialog.py')