Skip to content

Commit

Permalink
Always make terminal ns lower
Browse files Browse the repository at this point in the history
  • Loading branch information
dianakolusheva committed Jun 7, 2021
1 parent f4ac19e commit ed5e4de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emmaa/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,8 @@ def __init__(self, entity, stmt_type, entity_role, terminal_ns=None):
self.entity = entity
self.stmt_type = stmt_type
self.entity_role = entity_role
self.terminal_ns = terminal_ns
self.terminal_ns = [ns.lower() for ns in terminal_ns] if terminal_ns \
else None
self.path_stmt = self.make_stmt()

def make_stmt(self):
Expand Down

0 comments on commit ed5e4de

Please sign in to comment.