Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
niyas-sait committed Nov 10, 2021
1 parent 6f7ebac commit 9a22e33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ def run(self):
"--message-format=json",
]

if platform.machine() in ("ppc64le", "ppc64", "powerpc") or get_platform() == "win-arm64":
if (
platform.machine() in ("ppc64le", "ppc64", "powerpc")
or get_platform() == "win-arm64"
):
cargo_args.extend(
["--no-default-features", "--features=upload,log,human-panic"]
)
Expand Down

0 comments on commit 9a22e33

Please sign in to comment.