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 8869c47 commit 33856f3
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 33856f3

Please sign in to comment.