Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Feb 10, 2024
1 parent 8276aad commit 918037e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys

from setuptools import Extension, setup
from setuptools_rust import RustExtension, Binding
from setuptools_rust import Binding, RustExtension

if sys.platform == "darwin" and os.path.exists("/usr/bin/xcodebuild"):
# XCode 4.0 dropped support for ppc architecture, which is hardcoded in
Expand Down Expand Up @@ -41,7 +41,7 @@
]

rust_extensions = [
RustExtension("dulwich._objects", "crates/objects/Cargo.toml", binding=Binding.PyO3, optional = True),
RustExtension("dulwich._objects", "crates/objects/Cargo.toml", binding=Binding.PyO3, optional=True),
]

# Ideally, setuptools would just provide a way to do this
Expand Down

0 comments on commit 918037e

Please sign in to comment.