forked from LBRYCommunity/lbry-sdk
Merge pull request #233 from lbryio/add-more-pylint
lint the osx and windows apps
This commit is contained in:
commit
a7e3246a82
7 changed files with 9 additions and 9 deletions
|
@ -198,7 +198,7 @@ class ApplicationSettings(Setting):
|
||||||
self.ICON_PATH = "icons" if platform is WINDOWS else "app.icns"
|
self.ICON_PATH = "icons" if platform is WINDOWS else "app.icns"
|
||||||
self.APP_NAME = "LBRY"
|
self.APP_NAME = "LBRY"
|
||||||
self.PROTOCOL_PREFIX = "lbry"
|
self.PROTOCOL_PREFIX = "lbry"
|
||||||
self.wallet_TYPES = ["lbryum", "lbrycrd"]
|
self.WALLET_TYPES = ["lbryum", "lbrycrd"]
|
||||||
self.SOURCE_TYPES = ['lbry_sd_hash', 'url', 'btih']
|
self.SOURCE_TYPES = ['lbry_sd_hash', 'url', 'btih']
|
||||||
self.CURRENCIES = {
|
self.CURRENCIES = {
|
||||||
'BTC': {'type': 'crypto'},
|
'BTC': {'type': 'crypto'},
|
||||||
|
|
|
@ -1249,7 +1249,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
log.info("Get daemon settings")
|
log.info("Get daemon settings")
|
||||||
return self._render_response(lbrynet_settings.configurable_settings, OK_CODE)
|
return self._render_response(lbrynet_settings.__dict__, OK_CODE)
|
||||||
|
|
||||||
@AuthJSONRPCServer.auth_required
|
@AuthJSONRPCServer.auth_required
|
||||||
def jsonrpc_set_settings(self, p):
|
def jsonrpc_set_settings(self, p):
|
||||||
|
|
|
@ -7,7 +7,6 @@ import platform
|
||||||
import shutil
|
import shutil
|
||||||
from appdirs import user_data_dir
|
from appdirs import user_data_dir
|
||||||
from twisted.internet import reactor
|
from twisted.internet import reactor
|
||||||
from twisted.web import server
|
|
||||||
import Foundation
|
import Foundation
|
||||||
bundle = Foundation.NSBundle.mainBundle()
|
bundle = Foundation.NSBundle.mainBundle()
|
||||||
lbrycrdd_path = bundle.pathForResource_ofType_('lbrycrdd', None)
|
lbrycrdd_path = bundle.pathForResource_ofType_('lbrycrdd', None)
|
||||||
|
@ -22,9 +21,7 @@ if not os.path.isfile(lbrycrdd_path_conf):
|
||||||
f.write(lbrycrdd_path)
|
f.write(lbrycrdd_path)
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
from lbrynet.lbrynet_daemon.DaemonServer import DaemonServer
|
|
||||||
from lbrynet.lbrynet_daemon import DaemonControl
|
from lbrynet.lbrynet_daemon import DaemonControl
|
||||||
from lbrynet.lbrynet_daemon.DaemonRequest import DaemonRequest
|
|
||||||
from lbrynet.conf import settings
|
from lbrynet.conf import settings
|
||||||
from lbrynet.core import utils
|
from lbrynet.core import utils
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ log = logging.getLogger()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
conf.update_settings_from_file()
|
conf.update_settings_from_file()
|
||||||
log_file = settings.get_log_filename()
|
log_file = conf.settings.get_log_filename()
|
||||||
log_support.configure_logging(log_file, console=True)
|
log_support.configure_logging(log_file, console=True)
|
||||||
app = LBRYDaemonApp.sharedApplication()
|
app = LBRYDaemonApp.sharedApplication()
|
||||||
reactor.addSystemEventTrigger("after", "shutdown", AppHelper.stopEventLoop)
|
reactor.addSystemEventTrigger("after", "shutdown", AppHelper.stopEventLoop)
|
||||||
|
|
|
@ -61,6 +61,11 @@ VERSION=`python setup.py -V`
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
# not totally sure if pyOpenSSl is needed (JIE)
|
# not totally sure if pyOpenSSl is needed (JIE)
|
||||||
pip install pyOpenSSL
|
pip install pyOpenSSL
|
||||||
|
|
||||||
|
pip install pylint
|
||||||
|
pylint -E --disable=inherit-non-class --disable=no-member --ignored-modules=distutils \
|
||||||
|
--enable=unused-import lbrynet packaging/osx/lbry-osx-app/lbrygui/
|
||||||
|
|
||||||
python setup.py install
|
python setup.py install
|
||||||
|
|
||||||
echo "Building URI Handler"
|
echo "Building URI Handler"
|
||||||
|
|
|
@ -9,7 +9,6 @@ import win32con
|
||||||
import win32gui_struct
|
import win32gui_struct
|
||||||
from jsonrpc.proxy import JSONRPCProxy
|
from jsonrpc.proxy import JSONRPCProxy
|
||||||
from twisted.internet import reactor, error
|
from twisted.internet import reactor, error
|
||||||
from twisted.web import server
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import winxpgui as win32gui
|
import winxpgui as win32gui
|
||||||
|
@ -20,8 +19,6 @@ from lbrynet import conf
|
||||||
from lbrynet.core import log_support
|
from lbrynet.core import log_support
|
||||||
from lbrynet.core import utils
|
from lbrynet.core import utils
|
||||||
from lbrynet.lbrynet_daemon import DaemonControl
|
from lbrynet.lbrynet_daemon import DaemonControl
|
||||||
from lbrynet.lbrynet_daemon.DaemonServer import DaemonServer
|
|
||||||
from lbrynet.lbrynet_daemon.DaemonRequest import DaemonRequest
|
|
||||||
from lbrynet.conf import settings
|
from lbrynet.conf import settings
|
||||||
from packaging.uri_handler.LBRYURIHandler import LBRYURIHandler
|
from packaging.uri_handler.LBRYURIHandler import LBRYURIHandler
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
C:\Python27\Scripts\pip.exe install mock
|
C:\Python27\Scripts\pip.exe install mock
|
||||||
C:\Python27\Scripts\pip.exe install pylint
|
C:\Python27\Scripts\pip.exe install pylint
|
||||||
C:\Python27\python.exe C:\Python27\Scripts\trial.py C:\projects\lbry\tests\unit
|
C:\Python27\python.exe C:\Python27\Scripts\trial.py C:\projects\lbry\tests\unit
|
||||||
|
C:\Python27\Scripts\pylint.exe -E --disable=inherit-non-class --disable=no-member --ignored-modules=distutils --enable=unused-import lbrynet packaging/windows/lbry-win32-app/LBRYWin32App.py
|
||||||
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
|
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
|
||||||
|
|
Loading…
Reference in a new issue