Skip to content

Commit 3a20288

Browse files
committed
py: code: remove extra brackets
1 parent db28072 commit 3a20288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/code.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ func NewCode(argcount int32, kwonlyargcount int32,
166166
/* Create mapping between cells and arguments if needed. */
167167
if n_cellvars != 0 {
168168
total_args := argcount + kwonlyargcount
169-
if (flags & CO_VARARGS) != 0 {
169+
if flags&CO_VARARGS != 0 {
170170
total_args++
171171
}
172-
if (flags & CO_VARKEYWORDS) != 0 {
172+
if flags&CO_VARKEYWORDS != 0 {
173173
total_args++
174174
}
175175
used_cell2arg := false

0 commit comments

Comments
 (0)