File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99 steps :
1010 - name : Checkout Repository
11- uses : actions/checkout@v2
11+ uses : actions/checkout@v3
1212 - name : Set up Python 3.x
13- uses : actions/setup-python@v2
13+ uses : actions/setup-python@v4
1414 with :
1515 python-version : 3.x
1616 - name : Install dependencies
2323 runs-on : ubuntu-latest
2424 steps :
2525 - name : Checkout Repository
26- uses : actions/checkout@v2
26+ uses : actions/checkout@v3
2727 - name : Set up Python 3.7
28- uses : actions/setup-python@v2
28+ uses : actions/setup-python@v4
2929 with :
3030 python-version : 3.x
3131 - name : Install dependencies
5151 continue-on-error : ${{ matrix.experimental }}
5252 steps :
5353 - name : Checkout Repository
54- uses : actions/checkout@v2
54+ uses : actions/checkout@v3
5555 - name : Set Up Python - ${{ matrix.python-version }}
56- uses : actions/setup-python@v2
56+ uses : actions/setup-python@v4
5757 with :
5858 python-version : ${{ matrix.python-version }}
5959 - name : Install Dependencies
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ def aiter(x: Union[Iterable[T], AsyncIterable[T]]) -> AsyncIterator[T]:
133133 if hasattr (x , "__anext__" ):
134134 return x # type: ignore[return-value]
135135 elif hasattr (x , "__aiter__" ):
136- return x .__aiter__ () # type: ignore[union-attr]
136+ return x .__aiter__ ()
137137
138138 async def f () -> AsyncIterable [T ]:
139139 nonlocal x
You can’t perform that action at this time.
0 commit comments