Skip to content

Commit

Permalink
Add missing comma in provider fallback list (#830)
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Jun 1, 2021
1 parent 2e9507e commit 093067b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion optimade/server/routers/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def get_providers() -> list:

provider_list_urls = [
"https://providers.optimade.org/v1/links",
"https://raw.githubusercontent.com/Materials-Consortia/providers"
"https://raw.githubusercontent.com/Materials-Consortia/providers",
"/master/src/links/v1/providers.json",
]

Expand Down
2 changes: 1 addition & 1 deletion tests/server/routers/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_get_providers_warning(caplog, top_dir):

provider_list_urls = [
"https://providers.optimade.org/v1/links",
"https://raw.githubusercontent.com/Materials-Consortia/providers"
"https://raw.githubusercontent.com/Materials-Consortia/providers",
"/master/src/links/v1/providers.json",
]

Expand Down

0 comments on commit 093067b

Please sign in to comment.