Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
clenk committed Feb 7, 2024
1 parent 84d45a5 commit 3d506b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/api/v2/managers/schedule_api_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ def _merge_dictionaries(self, dict1, dict2):
for key in dict1.keys():
if key not in dict2:
dict2[key] = dict1[key]
elif isintance(dict1[key], dict):
elif isinstance(dict1[key], dict):
self._merge_dictionaries(dict1[key], dict2[key])
return dict2
2 changes: 1 addition & 1 deletion app/objects/c_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SourceSchema(ma.Schema):
def fix_adjustments(self, in_data, **_):
x = []
raw_adjustments = in_data.pop('adjustments', {})
if raw_adjustments and isintance(raw_adjustments, dict):
if raw_adjustments and isinstance(raw_adjustments, dict):
for ability_id, adjustments in raw_adjustments.items():
for trait, block in adjustments.items():
for change in block:
Expand Down

0 comments on commit 3d506b4

Please sign in to comment.