Skip to content

Commit

Permalink
Merge pull request #10 from learningequality/missing_comma
Browse files Browse the repository at this point in the history
Missing comma
  • Loading branch information
jredrejo committed Sep 7, 2023
2 parents 591041b + ce1a7ca commit b886ed6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kolibri_sync_extras_plugin/sync/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _get_or_queue_job(self, context, target_stage):

job = Job(
call_command,
args=("sync_proceed_to"),
args=("sync_proceed_to",),
kwargs={
"id": context.transfer_session.id,
"target_stage": target_stage,
Expand Down
2 changes: 1 addition & 1 deletion test/sync/test_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_get_or_queue_job__new(
self.assertEqual(
job.kwargs,
{
"args": "sync_proceed_to",
"args": ("sync_proceed_to",),
"kwargs": {
"id": "def456",
"target_stage": "other",
Expand Down

0 comments on commit b886ed6

Please sign in to comment.