Skip to content

Commit 7a7ba0f

Browse files
committed
tools/versions: import typing as T
1 parent 75982ee commit 7a7ba0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/versions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import subprocess
2727
import sys
2828
import time
29-
from typing import TypedDict
29+
import typing as T
3030

3131
import requests
3232

@@ -42,14 +42,14 @@
4242
])
4343

4444

45-
class AnityaPackageList(TypedDict):
45+
class AnityaPackageList(T.TypedDict):
4646
items: list[AnityaPackage]
4747
items_per_page: int
4848
page: int
4949
total_items: int
5050

5151

52-
class AnityaPackage(TypedDict):
52+
class AnityaPackage(T.TypedDict):
5353
distribution: str
5454
ecosystem: str
5555
name: str
@@ -58,7 +58,7 @@ class AnityaPackage(TypedDict):
5858
version: str
5959

6060

61-
class WrapInfo(TypedDict):
61+
class WrapInfo(T.TypedDict):
6262
versions: list[str]
6363
dependency_names: list[str]
6464
program_names: list[str]

0 commit comments

Comments
 (0)