Skip to content

Commit

Permalink
base_name check
Browse files Browse the repository at this point in the history
Signed-off-by: Shmulik Froimovich <[email protected]>
  • Loading branch information
shmfr committed Jul 4, 2023
1 parent 7dcfc67 commit c33d88a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nca/Utils/ExplTracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ def derive_item(self, new_name):
name = name_parts[0]
if self.ExplDescriptorContainer.get(name):
self.ExplDescriptorContainer[new_name] = {'path': self.ExplDescriptorContainer[name].get('path'),
'line': self.ExplDescriptorContainer[name].get('line'),
'base_name': name
'line': self.ExplDescriptorContainer[name].get('line')
# 'base_name': name
}
else:
NcaLogger().log_message(f'Explainability error: derived item {new_name} found no base item',
Expand Down

0 comments on commit c33d88a

Please sign in to comment.