Skip to content

Commit 07cdd8a

Browse files
cptspacemanspiffswolchok
authored andcommitted
Fixed linting issue.
1 parent f0c562a commit 07cdd8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exir/verification/arg_validator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ class EdgeOpArgValidator(torch.fx.Interpreter):
3737

3838
def __init__(self, graph_module: torch.fx.GraphModule) -> None:
3939
super().__init__(graph_module)
40-
self.violating_ops: Dict[EdgeOpOverload, Tuple[Dict[str, Optional[torch.dtype]], torch.fx.Node]] = (
41-
defaultdict(dict)
42-
)
40+
self.violating_ops: Dict[
41+
EdgeOpOverload, Tuple[Dict[str, Optional[torch.dtype]], torch.fx.Node]
42+
] = defaultdict(dict)
4343

4444
def run_node(self, n: torch.fx.Node) -> None:
4545
self.node = n

0 commit comments

Comments
 (0)