Skip to content

Commit

Permalink
Fix invalid variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmsoft-tuxicoman committed Nov 10, 2022
1 parent 670048f commit 509a62e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unittests/skills/test_mycroft_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def compare_dicts(self, d1, d2):
json.dumps(d2, sort_keys=True))

def check_read_vocab_file(self, path, result_list=None):
resultlist = result_list or []
result_list = result_list or []
self.assertEqual(sorted(read_vocab_file(path)), sorted(result_list))

def check_regex(self, path, result_list=None):
Expand Down

0 comments on commit 509a62e

Please sign in to comment.