Add mssing __future__ imports.

This commit is contained in:
Andrey Rakhmatullin 2024-06-05 22:48:16 +05:00
parent 262c10d85b
commit 480a11b68b
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
from __future__ import annotations
import argparse
import functools
import inspect

View File

@ -4,6 +4,8 @@ Spider Middleware manager
See documentation in docs/topics/spider-middleware.rst
"""
from __future__ import annotations
import logging
from inspect import isasyncgenfunction, iscoroutine
from itertools import islice