Skip to content

Commit

Permalink
add type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jun 3, 2023
1 parent 9b283f0 commit a608b4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xpra/client/auth/u2f_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os
import logging
import binascii
from typing import Tuple
from typing import Tuple, Optional

from xpra.os_util import load_binary_file, strtobytes, osexpand
from xpra.log import Logger, is_debug_enabled
Expand Down
4 changes: 2 additions & 2 deletions xpra/client/mixins/window_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def __init__(self):

self.server_window_frame_extents : bool = False
self.server_is_desktop : bool = False
self.server_window_states = []
self.server_window_signals = ()
self.server_window_states : Tuple[str,...] = []
self.server_window_signals : Tuple[str,...] = ()

self.server_input_devices = None
self.server_precise_wheel : bool = False
Expand Down

0 comments on commit a608b4c

Please sign in to comment.