Skip to content

Commit

Permalink
Fix black formatting on recent change.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysommer committed Oct 25, 2024
1 parent 5a2b5f8 commit 8af4cfe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyshacl/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ def meta_validate(shacl_graph: Union[GraphLike, str], inference: Optional[str] =
return validate(shacl_graph, shacl_graph=shacl_shacl_graph, inference=inference, **kwargs)


def make_default_logger(name: Union[str, None] = None, debug: bool = False, clear_handlers: bool = True) -> logging.Logger:
def make_default_logger(
name: Union[str, None] = None, debug: bool = False, clear_handlers: bool = True
) -> logging.Logger:
log_handler = logging.StreamHandler(stderr)
log = logging.getLogger(name)
if clear_handlers:
Expand Down

0 comments on commit 8af4cfe

Please sign in to comment.