Skip to content

Commit

Permalink
Hotfix: Update type names
Browse files Browse the repository at this point in the history
  • Loading branch information
dule1322 committed Jun 10, 2024
1 parent 5cc2041 commit 1971706
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions coretex/entities/task_run/parameter/parameter_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ class ParameterType(Enum):
imuVectors = "IMUVectors"
enum = "enum"
range = "range"
awsSecret = "aws-secret"
gitSecret = "git-secret"
credentialsSecret = "credentials-secret"
awsSecret = "aws_secret"
gitSecret = "git_secret"
credentialsSecret = "credentials_secret"

# List parameters
intList = "list[int]"
Expand All @@ -41,6 +41,6 @@ class ParameterType(Enum):
datasetList = "list[dataset]"
modelList = "list[model]"
enumList = "list[enum]"
awsSecretList = "list[aws-secret]"
gitSecretList = "list[git-secret]"
credentialsSecretList = "list[credentials-secret]"
awsSecretList = "list[aws_secret]"
gitSecretList = "list[git_secret]"
credentialsSecretList = "list[credentials_secret]"

0 comments on commit 1971706

Please sign in to comment.