Use assignment instead of annotation in third party enums (#11957)

This commit is contained in:
Ali Hamdan
2024-05-18 17:31:39 +02:00
committed by GitHub
parent 5bd7150139
commit bd306f6b4c
7 changed files with 58 additions and 58 deletions

View File

@@ -77,8 +77,8 @@ class TableCellFillMode(CoerciveEnum):
def should_fill_cell(self, i: int, j: int) -> bool: ...
class TableSpan(CoerciveEnum):
ROW: Literal["ROW"]
COL: Literal["COL"]
ROW = "ROW"
COL = "COL"
class TableHeadingsDisplay(CoerciveIntEnum):
NONE = 0