Correct a few type definitions in layout.py

This commit is contained in:
Kovid Goyal
2020-03-13 16:21:36 +05:30
parent 917559f883
commit 5414dc398e
2 changed files with 10 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
# License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
from itertools import chain
from typing import TYPE_CHECKING, Optional, Sequence, Tuple
from typing import TYPE_CHECKING, List, Optional, Sequence, Tuple
from .constants import WindowGeometry
from .fast_data_types import (
@@ -63,7 +63,7 @@ class Borders:
def __call__(
self,
windows: Sequence['Window'],
windows: List['Window'],
active_window: Optional['Window'],
current_layout: 'Layout',
extra_blank_rects: Sequence[Tuple[int, int, int, int]],