File tree 2 files changed +1
-3
lines changed
packages/modern-di/modern_di
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 13
13
T_co = typing .TypeVar ("T_co" , covariant = True )
14
14
15
15
16
- class Container (contextlib .AbstractAsyncContextManager ["Container" ]):
16
+ class Container (contextlib .AbstractAsyncContextManager ["Container" ], contextlib . AbstractContextManager [ "Container" ] ):
17
17
__slots__ = (
18
18
"_is_async" ,
19
19
"_overrides" ,
Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ ignore = [
40
40
" S101" , # allow asserts
41
41
" TCH" , # ignore flake8-type-checking
42
42
" FBT" , # allow boolean args
43
- " ANN101" , # missing-type-self
44
- " ANN102" , # missing-type-cls
45
43
" D203" , # "one-blank-line-before-class" conflicting with D211
46
44
" D213" , # "multi-line-summary-second-line" conflicting with D212
47
45
" COM812" , # flake8-commas "Trailing comma missing"
You can’t perform that action at this time.
0 commit comments