Skip to content

Commit a605ef5

Browse files
committed
Refactor importpass: formatting for improved readability
1 parent d36ac81 commit a605ef5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jac/jaclang/compiler/passes/main/import_pass.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,9 @@ def __load_jac_builtins(self) -> None:
492492

493493
assert isinstance(self.ir, ast.Module)
494494

495-
file_to_raise = os.path.join(os.path.dirname(__file__), "../../../../jaclang/plugin/jac_builtins.pyi")
495+
file_to_raise = os.path.join(
496+
os.path.dirname(__file__), "../../../../jaclang/plugin/jac_builtins.pyi"
497+
)
496498
with open(file_to_raise, "r", encoding="utf-8") as f:
497499
file_source = f.read()
498500
mod = PyastBuildPass(

0 commit comments

Comments
 (0)