File tree 2 files changed +2
-3
lines changed 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 4
4
from typing import (
5
5
Any ,
6
6
Callable ,
7
+ Final ,
7
8
Generator ,
8
9
Hashable ,
9
10
Literal ,
@@ -26,7 +27,7 @@ from enum import Enum
26
27
class _NoDefault (Enum ):
27
28
no_default = ...
28
29
29
- no_default = _NoDefault .no_default
30
+ no_default : Final = _NoDefault .no_default
30
31
NoDefault = Literal [_NoDefault .no_default ]
31
32
32
33
i8max : int
Original file line number Diff line number Diff line change 18
18
" pandas/core/array_algos/take.py" ,
19
19
" pandas/core/arrays/_mixins.py" ,
20
20
" pandas/core/arrays/_ranges.py" ,
21
- " pandas/core/arrays/arrow/_arrow_utils.py" ,
22
21
" pandas/core/arrays/arrow/array.py" ,
23
22
" pandas/core/arrays/base.py" ,
24
23
" pandas/core/arrays/boolean.py" ,
97
96
" pandas/io/formats/csvs.py" ,
98
97
" pandas/io/formats/excel.py" ,
99
98
" pandas/io/formats/format.py" ,
100
- " pandas/io/formats/html.py" ,
101
99
" pandas/io/formats/info.py" ,
102
100
" pandas/io/formats/printing.py" ,
103
101
" pandas/io/formats/style.py" ,
You can’t perform that action at this time.
0 commit comments