Skip to content

Commit 23c324a

Browse files
committed
Fix flake8
1 parent 56aad6e commit 23c324a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

numba_cuda/numba/cuda/tests/cudapy/test_debuginfo.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,13 @@ def test_issue_9888(self):
7676
# Compiler created symbol should not be emitted in DILocalVariable
7777
# See Numba Issue #9888 https://github.com/numba/numba/pull/9888
7878
sig = (types.boolean,)
79+
7980
@cuda.jit(sig, debug=True, opt=False)
8081
def f(cond):
8182
if cond:
82-
x = 1
83+
x = 1 # noqa: F841
8384
else:
84-
x = 0
85+
x = 0 # noqa: F841
8586

8687
llvm_ir = f.inspect_llvm(sig)
8788
# A varible name starting with "bool" in the debug metadata

0 commit comments

Comments
 (0)