Skip to content

Commit

Permalink
update code
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00-pl committed Dec 6, 2024
1 parent cc580a7 commit 40d63c8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plai/core/core_dialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def build(op_name: str, args: list, attrs: dict, loc: Location = None):


class Transpose(CoreNode):
def __init__(self, arg: module.Node, loc: Location=None):
def __init__(self, arg: module.Node, loc: Location = None):
super().__init__([arg], {}, loc)

@staticmethod
Expand Down
1 change: 0 additions & 1 deletion plai/core/location.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

class Location:
pass

Expand Down
2 changes: 1 addition & 1 deletion plai/core/module.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from abc import ABC, abstractmethod
from typing import List, Dict, Optional, Self
from typing import List, Dict, Optional

from plai.core.location import Location

Expand Down

0 comments on commit 40d63c8

Please sign in to comment.