We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10db3bd commit 09950c6Copy full SHA for 09950c6
1 file changed
packages/google-api-core/tests/asyncio/test_bidi_async.py
@@ -12,7 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-import sys
+
16
import asyncio
17
18
from unittest import mock
@@ -33,15 +33,6 @@
33
from google.api_core import bidi_async
34
from google.api_core import exceptions
35
36
-# TODO: remove this when droppping support for "Python 3.10" and below.
37
-if sys.version_info <= (3, 10): # type: ignore[operator]
38
-
39
- def aiter(obj):
40
- return obj.__aiter__()
41
42
- async def anext(obj):
43
- return await obj.__anext__()
44
45
46
@pytest.mark.asyncio
47
class Test_AsyncRequestQueueGenerator:
0 commit comments