Skip to content

Commit 2251747

Browse files
author
unknown
committed
adhere to comments
1 parent 0245e47 commit 2251747

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Diff for: src/galaxy/api/importer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ async def start(self, ids):
7070

7171

7272
class CollectionImporter(Importer):
73-
def __init__(self, notification_partialy_finished, *args):
73+
def __init__(self, notification_partially_finished, *args):
7474
super().__init__(*args)
75-
self._notification_partial_finished = notification_partialy_finished
75+
self._notification_partially_finished = notification_partially_finished
7676

7777
async def _import_element(self, id_, context_):
7878
try:

Diff for: src/galaxy/api/plugin.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
from galaxy.task_manager import TaskManager
1616
from galaxy.api.importer import Importer, CollectionImporter
1717

18-
logger = logging.getLogger(__name__)
1918

19+
logger = logging.getLogger(__name__)
2020

2121

2222
class JSONEncoder(json.JSONEncoder):
@@ -116,7 +116,6 @@ def __init__(self, platform, version, reader, writer, handshake_token):
116116
)
117117
self._subscription_games_importer = CollectionImporter(
118118
self._subscriptions_games_partial_import_finished,
119-
120119
self._external_task_manager,
121120
"subscription games",
122121
self.get_subscription_games,

0 commit comments

Comments
 (0)