Skip to content

Commit

Permalink
chore: update default prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdoret committed Jan 4, 2024
1 parent c533393 commit f8ca08c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modo/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def query(self, query: str):

def list_samples(self):
"""Lists samples in the archive."""
res = self.query("SELECT ?s WHERE { ?s a smoc_schema:Sample }")
res = self.query("SELECT ?s WHERE { ?s a smoc:Sample }")
samples = []
for row in res:
for val in row:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rdflib = "^6.3"
zarr = "^2.16.1"
calamus = "^0.4.2"
pysam = "^0.22.0"
smoc_schema = { git = "git@github.com:sdsc-ordes/smoc-schema.git", branch = "refactor/sphn" }
smoc_schema = { git = "https://github.com/sdsc-ordes/smoc-schema.git", branch = "refactor/sphn" }

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
Expand Down

0 comments on commit f8ca08c

Please sign in to comment.