Skip to content

Commit

Permalink
make all parameters of ShapeSchema keyword-only
Browse files Browse the repository at this point in the history
  • Loading branch information
prohde committed Sep 20, 2023
1 parent 9c5aa1b commit 650d548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TravSHACL/core/ShapeSchema.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class ShapeSchema:
"""This class represents a SHACL shape schema."""

def __init__(self, schema_dir, schema_format, endpoint, graph_traversal, heuristics, use_selective_queries,
def __init__(self, *, schema_dir, schema_format, endpoint, graph_traversal, heuristics, use_selective_queries,
max_split_size, output_dir, order_by_in_queries, save_outputs, work_in_parallel=False):
"""
Creates a new shape schema instance.
Expand Down

0 comments on commit 650d548

Please sign in to comment.