We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b9570 commit 3ea4c8cCopy full SHA for 3ea4c8c
python/varspark/etc.py
@@ -12,8 +12,9 @@ def find_jar():
12
jars_dir = pkg_resources.resource_filename(__name__, "jars")
13
if not os.path.isdir(jars_dir):
14
# then it can be an develoment install
15
- jars_dir = os.path.abspath(pkg_resources.resource_filename(__name__,
16
- os.path.join(os.pardir,
17
- os.pardir,
18
- "target")))
+ jars_dir = os.path.abspath(
+ pkg_resources.resource_filename(
+ __name__, os.path.join(os.pardir, os.pardir, "target")
+ )
19
20
return glob.glob(os.path.join(jars_dir, "*-all.jar"))[0]
0 commit comments