Skip to content

Commit

Permalink
Passes extension tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guillett committed Jul 10, 2023
1 parent 945eaa6 commit f131701
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion openfisca_core/variables/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,10 @@ def is_input_variable(self):

@classmethod
def get_introspection_data(cls):
return cls.introspection_data
try:
return cls.introspection_data
except AttributeError:
return '', None, 0

def get_formula(
self,
Expand Down

0 comments on commit f131701

Please sign in to comment.