We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36ac81 commit a605ef5Copy full SHA for a605ef5
jac/jaclang/compiler/passes/main/import_pass.py
@@ -492,7 +492,9 @@ def __load_jac_builtins(self) -> None:
492
493
assert isinstance(self.ir, ast.Module)
494
495
- file_to_raise = os.path.join(os.path.dirname(__file__), "../../../../jaclang/plugin/jac_builtins.pyi")
+ file_to_raise = os.path.join(
496
+ os.path.dirname(__file__), "../../../../jaclang/plugin/jac_builtins.pyi"
497
+ )
498
with open(file_to_raise, "r", encoding="utf-8") as f:
499
file_source = f.read()
500
mod = PyastBuildPass(
0 commit comments