Skip to content

Commit

Permalink
chore: added str values that match the command lin inputs report_para…
Browse files Browse the repository at this point in the history
…ms.py
  • Loading branch information
rebekahrudd committed Oct 24, 2024
1 parent 7f0e119 commit 6b64d59
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gatorgrade/output/report_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
class ReportParamsLocation(str, Enum):
"""Define the location for the parameters of reporting and storing gatorgrade checks."""

report_location: str
file = "file"
env = "env"
# none = validate_location()
Expand All @@ -24,6 +25,7 @@ def validate_location(location):
class ReportParamsType(str, Enum):
"""Define the type of type to store the data in."""

report_storing_type: str
json = "json"
md = "md"

Expand All @@ -39,6 +41,7 @@ def validate_storing_type(storing_type):
class ReportParamsStoringName(str, Enum):
"""Define the type of type to store the data in."""

storing_location_name: str
file: str
github = "github"

Expand Down

0 comments on commit 6b64d59

Please sign in to comment.