Skip to content

Commit

Permalink
Merge pull request #117 from EMMC-ASBL/flb/allow_oneletter_words
Browse files Browse the repository at this point in the history
One letter words where not allowed in mappings, now they are
  • Loading branch information
francescalb authored Jun 23, 2023
2 parents 70b80d9 + 053f200 commit 463489e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tripper/triplestore.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@


# Regular expression matching a prefixed IRI
_MATCH_PREFIXED_IRI = re.compile(r"^([a-z]+):([^/]{2}.*)$")
_MATCH_PREFIXED_IRI = re.compile(r"^([a-z]+):([^/]{1}.*)$")


class Triplestore:
Expand Down

0 comments on commit 463489e

Please sign in to comment.