Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nomad-FAIR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nomad-lab
nomad-FAIR
Merge requests
!2037
Correct str enum type
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Correct str enum type
wrong-enum-value
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Theodore Chang
requested to merge
wrong-enum-value
into
develop
8 months ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Viewing commit
4cdb55ce
Show latest version
2 files
+
8
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
4cdb55ce
Commit
· 4cdb55ce
Theodore Chang
authored
8 months ago
nomad/app/dcat/common.py
+
5
−
5
Options
@@ -40,11 +40,11 @@ def url(*args, **kwargs):
class
Formats
(
str
,
Enum
):
xml
=
(
'
xml
'
,)
n3
=
(
'
n3
'
,)
turtle
=
(
'
turtle
'
,)
nt
=
(
'
nt
'
,)
pretty_xml
=
(
'
pretty-xml
'
,)
xml
=
'
xml
'
n3
=
'
n3
'
turtle
=
'
turtle
'
nt
=
'
nt
'
pretty_xml
=
'
pretty-xml
'
trig
=
'
trig
'
Loading