Skip to content

Commit

Permalink
fix undef var when no rules
Browse files Browse the repository at this point in the history
  • Loading branch information
majidaldo committed Feb 8, 2025
1 parent 9caef9c commit 99e2c34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rdf_engine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# reset to 0 if issues
__version__ = "210"
__version__ = "211"

from .engine import Engine, logger
2 changes: 1 addition & 1 deletion src/rdf_engine/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def process(qs):
# so if a rule returns a string,
# it /could/ go in fast in the case of no processing (canon/deanon)
ingest(self.db, _, flush=True)
del _
del _
self.i += 1
self.db.flush()
self.db.optimize()
Expand Down

0 comments on commit 99e2c34

Please sign in to comment.