Skip to content

Commit 057a1ce

Browse files
committed
...
1 parent 60d719f commit 057a1ce

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

src/async_utils/_qs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import annotations
1616

17-
__lazy_modules__ = ["asyncio"]
17+
__lazy_modules__: list[str] = ["asyncio"]
1818

1919
import asyncio
2020
import sys

src/async_utils/_simple_lock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__lazy_modules__ = ["asyncio"]
15+
__lazy_modules__: list[str] = ["asyncio"]
1616

1717
import asyncio
1818
import concurrent.futures as cf

src/async_utils/bg_loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from __future__ import annotations
1818

19-
__lazy_modules__ = ["asyncio"]
19+
__lazy_modules__: list[str] = ["asyncio"]
2020

2121
import asyncio
2222
import concurrent.futures as cf

src/async_utils/bg_tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import annotations
1616

17-
__lazy_modules__ = ["asyncio"]
17+
__lazy_modules__: list[str] = ["asyncio"]
1818

1919
import asyncio
2020
import time

src/async_utils/corofunc_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import annotations
1616

17-
__lazy_modules__ = ["asyncio"]
17+
__lazy_modules__: list[str] = ["asyncio"]
1818

1919
import asyncio
2020
import concurrent.futures as cf

src/async_utils/gen_transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import annotations
1616

17-
__lazy_modules__ = ["asyncio"]
17+
__lazy_modules__: list[str] = ["asyncio"]
1818

1919
import asyncio
2020
import concurrent.futures as cf #: PYUPDATE: py3.15, check cf.Future use

src/async_utils/lockout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import annotations
1616

17-
__lazy_modules__ = ["asyncio"]
17+
__lazy_modules__: list[str] = ["asyncio"]
1818

1919
import asyncio
2020
import concurrent.futures as cf

src/async_utils/lru.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from __future__ import annotations
1818

19-
__lazy_modules__ = ["asyncio"]
19+
__lazy_modules__: list[str] = ["asyncio"]
2020

2121
import heapq
2222
import math

src/async_utils/priority_sem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import annotations
1717

18-
__lazy_modules__ = ["asyncio"]
18+
__lazy_modules__: list[str] = ["asyncio"]
1919

2020
import asyncio
2121
import concurrent.futures as cf

src/async_utils/ratelimiter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import annotations
1717

18-
__lazy_modules__ = ["asyncio"]
18+
__lazy_modules__: list[str] = ["asyncio"]
1919

2020
import asyncio
2121
import time

0 commit comments

Comments
 (0)