Skip to content

Commit 3ea4c8c

Browse files
STYLE: Format with black (#237)
1 parent a9b9570 commit 3ea4c8c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

python/varspark/etc.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ def find_jar():
1212
jars_dir = pkg_resources.resource_filename(__name__, "jars")
1313
if not os.path.isdir(jars_dir):
1414
# 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")))
15+
jars_dir = os.path.abspath(
16+
pkg_resources.resource_filename(
17+
__name__, os.path.join(os.pardir, os.pardir, "target")
18+
)
19+
)
1920
return glob.glob(os.path.join(jars_dir, "*-all.jar"))[0]

0 commit comments

Comments
 (0)