Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
stellaraccident committed Feb 5, 2024
1 parent 4692c47 commit c4ac4d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/shark_turbine/aot/support/procedural/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ def track(self, module_builder: ModuleBuilder, export_namespace: str) -> Any:
continue
elif isinstance(value, AbstractTensor):
global_type = value.get_ir_type(module_builder)
(actual_symbol_name, global_op,) = module_builder.create_typed_global(
(
actual_symbol_name,
global_op,
) = module_builder.create_typed_global(
f"_{fq_name}",
global_type,
attrs=self._attrs,
Expand Down

0 comments on commit c4ac4d2

Please sign in to comment.