Skip to content

Commit de0fbc4

Browse files
committed
Appeasing the flake8.
1 parent 2c45dc1 commit de0fbc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nnf/kissat.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ def solve(
2626
if not sentence.is_CNF():
2727
raise ValueError("Sentence must be in CNF")
2828

29-
SOLVER = os.path.join(os.path.dirname(os.path.abspath(__file__)),
30-
'bin', 'kissat')
29+
SOLVER = os.path.join(
30+
os.path.dirname(os.path.abspath(__file__)), 'bin', 'kissat'
31+
)
3132
assert os.path.isfile(SOLVER), "Cannot seem to find kissat solver."
3233

3334
args = [SOLVER] + extra_args

0 commit comments

Comments
 (0)