unused from __future__ import annotations (#8171)

This commit is contained in:
chenyu
2024-12-11 19:05:04 -05:00
committed by GitHub
parent aae2f4da8d
commit aaa3cc235d
4 changed files with 0 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
# the job of the lowerer is to do indexing
from __future__ import annotations
import functools, itertools, operator
from dataclasses import dataclass
from typing import List, Tuple, cast, Optional

View File

@@ -1,4 +1,3 @@
from __future__ import annotations
from typing import TypeVar, Generic, Callable, List, Tuple, Union, Dict, cast, Optional, Any
import functools, collections
from tinygrad.tensor import Tensor

View File

@@ -1,4 +1,3 @@
from __future__ import annotations
from typing import Dict, List, Optional, Tuple, Union, DefaultDict, Literal, Callable, cast
import os, math
from collections import defaultdict, Counter

View File

@@ -1,4 +1,3 @@
from __future__ import annotations
from typing import Tuple, List, Any
from dataclasses import dataclass
import tinygrad.runtime.autogen.libc as libc