Skip to content

Commit cd7a07a

Browse files
committed
Another shot at fixing linter issues
1 parent 5a4f949 commit cd7a07a

File tree

1 file changed

+2
-2
lines changed
  • python-bindings/overview_article

1 file changed

+2
-2
lines changed

python-bindings/overview_article/tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
overview article. """
33
import cffi
44
import invoke
5-
import os
65
import pathlib
76

87

@@ -75,7 +74,8 @@ def build_cppmult(c):
7574
""" Build the shared library for the sample C++ code """
7675
print_banner("Building C++ Library")
7776
invoke.run(
78-
"g++ -O3 -Wall -Werror -shared -std=c++11 -fPIC cppmult.cpp -o libcppmult.so "
77+
"g++ -O3 -Wall -Werror -shared -std=c++11 -fPIC cppmult.cpp "
78+
"-o libcppmult.so "
7979
)
8080
print("* Complete")
8181

0 commit comments

Comments
 (0)