Skip to content

Commit

Permalink
fix: vocabularies endpoint
Browse files Browse the repository at this point in the history
fix: build prod
  • Loading branch information
xgui3783 committed Aug 30, 2024
1 parent 019fc53 commit f8b8892
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-img.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
-p '${{ secrets.EBRAINS_DOCKER_REG_TOKEN }}' \
docker-registry.ebrains.eu
VERSION=$(cat api/VERSION)
VERSION=$(cat VERSION)
while [[ "$VERSION" == *"."* ]]
do
if [[ "$BREAK" == "0" ]]
Expand Down
4 changes: 2 additions & 2 deletions api/common/data_handlers/vocabularies/gene.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def get_genes(find:str=None):
Returns:
List of the genes."""
from api.serialization.util.siibra import GENE_NAMES


from siibra.vocabularies import GENE_NAMES
if find == None:
return_list = [v for v in GENE_NAMES]
else:
Expand Down

0 comments on commit f8b8892

Please sign in to comment.