From b0719c689eede4c4c5ec1921fb2b57eb65a327d8 Mon Sep 17 00:00:00 2001 From: Alkid Date: Mon, 16 Sep 2024 15:40:59 +0200 Subject: [PATCH] Replaced `is` with `==` --- owlapy/scripts/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owlapy/scripts/run.py b/owlapy/scripts/run.py index ba779f5..630457f 100644 --- a/owlapy/scripts/run.py +++ b/owlapy/scripts/run.py @@ -39,7 +39,7 @@ def main(): args = get_default_arguments() sync_reasoner = SyncReasoner(args.path_ontology) - if args.inference_types is "all": + if args.inference_types == "all": it = inference_types else: it = args.inference_types