Skip to content

Commit

Permalink
Removed unintentional change
Browse files Browse the repository at this point in the history
  • Loading branch information
christophertubbs committed Jul 20, 2023
1 parent 134bfd8 commit e65c323
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def default_is_env_workaround(cls, v, values):
return v

def has_indicator(field_name: str):
return values.get(field_name, ) and values[field_name].split(cls._FROM_ENV_DELIMIT)[0] == cls._FROM_ENV_PREFIX
return values.get(field_name) and values[field_name].split(cls._FROM_ENV_DELIMIT)[0] == cls._FROM_ENV_PREFIX

return has_indicator('forcing_file_pattern') or has_indicator('forcing_file_name')

Expand Down

0 comments on commit e65c323

Please sign in to comment.