Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
maaktweluit committed Feb 21, 2020
1 parent 4cdbf11 commit 13d820b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion golem/apps/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, app_dir: Path, save_apps=True) -> None:
self._app_dir = app_dir

# Save build in apps, then load apps from path
built_in_apps = []
built_in_apps: List[AppId] = []
if save_apps:
built_in_apps = save_built_in_app_definitions(app_dir)
for app_def in load_apps_from_dir(app_dir):
Expand Down
2 changes: 2 additions & 0 deletions golem/apps/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

class ClientAppProvider:
def __init__(self, client: 'Client'):
assert client.task_server is not None, \
'ClientAppProvider needs task_server'
self.app_manager = client.task_server.app_manager

@rpc_utils.expose('apps.list')
Expand Down
2 changes: 0 additions & 2 deletions tests/golem/apps/test_app_manager.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from pathlib import Path

from golem.apps.manager import AppManager
from golem.apps import (
AppDefinition,
Expand Down

0 comments on commit 13d820b

Please sign in to comment.