Skip to content

Commit

Permalink
remove type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
alckasoc committed Jan 19, 2025
1 parent 162b0b9 commit 5db7a9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui_agents/aci/LinuxOSACI.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,8 @@ def fail(self):


class UIElement(object):
def __init__(self, node: Accessible):
self.node: Accessible = node
def __init__(self, node):
self.node = node

def getAttributeNames(self):
attributes = self.node.getAttributes()
Expand Down

0 comments on commit 5db7a9d

Please sign in to comment.