Skip to content

Commit

Permalink
Fix two errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah Bast committed Dec 8, 2024
1 parent 44d6c8d commit b029e06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qlever/commands/example_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ def execute(self, args) -> bool:
args.complete = False
clear_cache_successful = False
with mute_log():
clear_cache_successful = ClearCacheCommand().execute(args):
clear_cache_successful = ClearCacheCommand().execute(args)
if not clear_cache_successful:
log.warn(f"Failed to clear the cache: {e}")
log.warn("Failed to clear the cache")

# Remove OFFSET and LIMIT (after the last closing bracket).
if args.remove_offset_and_limit or args.limit:
Expand Down

0 comments on commit b029e06

Please sign in to comment.