File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 11# .coveragerc
22[report]
3- show_missing = True
3+ show_missing = True
4+ exclude_lines =
5+ pragma: no cover
6+ # ignore lines contains only ellipsis
7+ ^\s*\.\.\.\s*$
Original file line number Diff line number Diff line change 44from operator import mul , add
55import collections
66from functools import reduce , wraps , partial
7- from typing import (
7+ from typing import ( # pylint: disable=unused-import
88 Any ,
99 Callable ,
1010 DefaultDict ,
4545from functional .execution import ExecutionStrategies
4646
4747
48- _T_co = TypeVar ("_T_co" , covariant = True )
49- _T1_co = TypeVar ("_T1_co" , covariant = True )
48+ _T_co = TypeVar ("_T_co" , covariant = True ) # pylint: disable=invalid-name
49+ _T1_co = TypeVar ("_T1_co" , covariant = True ) # pylint: disable=invalid-name
5050_T1 = TypeVar ("_T1" )
5151_T2 = TypeVar ("_T2" )
5252_T3 = TypeVar ("_T3" )
Original file line number Diff line number Diff line change 1111from functional .io import get_read_function
1212
1313
14- _T_co = TypeVar ("_T_co" , covariant = True )
15- _T2_co = TypeVar ("_T2_co" , contravariant = True )
14+ _T_co = TypeVar ("_T_co" , covariant = True ) # pylint: disable=invalid-name
15+ _T2_co = TypeVar ("_T2_co" , contravariant = True ) # pylint: disable=invalid-name
1616
1717
1818class Stream (object ):
You can’t perform that action at this time.
0 commit comments