Fix pyflakes warnings

This commit is contained in:
Jack Grigg
2018-10-05 11:32:22 +01:00
parent f09aae037c
commit 089ec92e7b
2 changed files with 6 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
import inspect
import os
# To keep pyflakes happy
WalletShieldCoinbaseTest = object
cwd = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
execfile(os.path.join(cwd, 'wallet_shieldcoinbase.py'))

View File

@@ -2,6 +2,9 @@
import inspect
import os
# To keep pyflakes happy
WalletShieldCoinbaseTest = object
cwd = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
execfile(os.path.join(cwd, 'wallet_shieldcoinbase.py'))