Skip to content

Commit

Permalink
STYLE: Format with black (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickEdwards7502 committed Sep 13, 2024
1 parent a9b9570 commit 3ea4c8c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions python/varspark/etc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ def find_jar():
jars_dir = pkg_resources.resource_filename(__name__, "jars")
if not os.path.isdir(jars_dir):
# then it can be an develoment install
jars_dir = os.path.abspath(pkg_resources.resource_filename(__name__,
os.path.join(os.pardir,
os.pardir,
"target")))
jars_dir = os.path.abspath(
pkg_resources.resource_filename(
__name__, os.path.join(os.pardir, os.pardir, "target")
)
)
return glob.glob(os.path.join(jars_dir, "*-all.jar"))[0]

0 comments on commit 3ea4c8c

Please sign in to comment.