Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit ddbc57b

Browse files
committed
fmt
1 parent ba06a4f commit ddbc57b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def find_package_data(base, globs, root="python-snapify"):
3030
rv.extend([os.path.relpath(f, root) for f in files])
3131
return rv
3232

33+
3334
setup(
3435
name="python-snapify",
3536
version=VERSION,
@@ -40,9 +41,9 @@ def find_package_data(base, globs, root="python-snapify"):
4041
long_description_content_type="text/markdown",
4142
url="https://github.com/jmelahman/python-snapify",
4243
py_modules=[],
43-
ext_modules=mypycify([
44-
os.path.join('pysnapify', x) for x in find_package_data('pysnapify', ['*.py'])
45-
]),
44+
ext_modules=mypycify(
45+
[os.path.join("pysnapify", x) for x in find_package_data("pysnapify", ["*.py"])]
46+
),
4647
package_dir={"pysnapify": "pysnapify"},
4748
packages=find_packages(),
4849
scripts=["bin/snapify"],

0 commit comments

Comments
 (0)