Skip to content

Commit 1885acd

Browse files
committed
Reformat code
1 parent 42fdb03 commit 1885acd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/api/compiler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,8 @@ def start(format: bool = False):
413413
if flag.group(3) == "true" or flag.group(3).startswith("Vector"):
414414
write_flags.append(f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} else 0")
415415
else:
416-
write_flags.append(f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} is not None else 0")
416+
write_flags.append(
417+
f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} is not None else 0")
417418

418419
write_flags = "\n ".join([
419420
f"{arg_name} = 0",

0 commit comments

Comments
 (0)