qlever 0.4.2__py3-none-any.whl → 0.4.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of qlever might be problematic. Click here for more details.

qlever/__init__.py CHANGED
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  import sys
2
4
  from pathlib import Path
3
5
 
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  import shlex
2
4
  import subprocess
3
5
 
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  import subprocess
2
4
  from pathlib import Path
3
5
 
qlever/log.py CHANGED
@@ -1,6 +1,4 @@
1
- # Copyright 2024, University of Freiburg,
2
- # Chair of Algorithms and Data Structures
3
- # Author: Hannah Bast <bast@cs.uni-freiburg.de>
1
+ from __future__ import annotations
4
2
 
5
3
  import logging
6
4
  from contextlib import contextmanager
qlever/qlever_main.py CHANGED
@@ -5,6 +5,8 @@
5
5
  # Chair of Algorithms and Data Structures
6
6
  # Author: Hannah Bast <bast@cs.uni-freiburg.de>
7
7
 
8
+ from __future__ import annotations
9
+
8
10
  import re
9
11
  import traceback
10
12