There was an error while loading. Please reload this page.
1 parent 42fdb03 commit 1885acdCopy full SHA for 1885acd
compiler/api/compiler.py
@@ -413,7 +413,8 @@ def start(format: bool = False):
413
if flag.group(3) == "true" or flag.group(3).startswith("Vector"):
414
write_flags.append(f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} else 0")
415
else:
416
- write_flags.append(f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} is not None else 0")
+ write_flags.append(
417
+ f"{arg_name} |= (1 << {flag.group(2)}) if self.{i[0]} is not None else 0")
418
419
write_flags = "\n ".join([
420
f"{arg_name} = 0",
0 commit comments