Skip to content

Commit

Permalink
style: make ruff happy
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Feb 20, 2024
1 parent 69f19c0 commit 562b292
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugin/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,11 @@ class ST_SyntaxRule(ST_MatchRule):

class WindowKeyedDict(UserDict[WindowIdAble, _T]):
def __setitem__(self, key: WindowIdAble, value: _T) -> None: ...

def __getitem__(self, key: WindowIdAble) -> _T: ...

def __delitem__(self, key: WindowIdAble) -> None: ...

def keys(self) -> KeysView[WindowId]: ...
@staticmethod
def _to_window_id(value: WindowIdAble) -> WindowId: ...
Expand Down

0 comments on commit 562b292

Please sign in to comment.