Skip to content

Commit

Permalink
fix: underscore in "require-project-id" param
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Dec 24, 2024
1 parent 98307de commit 67d879c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lean/models/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class AuthConfiguration(InternalInputUserInput):

def __init__(self, config_json_object):
super().__init__(config_json_object)
self.require_project_id = config_json_object.get("require_project_id", False)
self.require_project_id = config_json_object.get("require-project-id", False)

def factory(config_json_object) -> 'AuthConfiguration':
"""Creates an instance of the child classes.
Expand Down

0 comments on commit 67d879c

Please sign in to comment.