Spaces:
Sleeping
Sleeping
Linter fix
Browse files- tracr/rasp/rasp.py +2 -2
tracr/rasp/rasp.py
CHANGED
@@ -40,10 +40,10 @@ import functools
|
|
40 |
import itertools
|
41 |
from typing import (Any, Callable, Dict, Generic, List, Mapping, Optional,
|
42 |
Sequence, TypeVar, Union)
|
43 |
-
|
44 |
from absl import logging
|
45 |
-
|
46 |
import numpy as np
|
|
|
47 |
|
48 |
SelectorValue = List[List[bool]]
|
49 |
NumericValue = Union[int, float]
|
|
|
40 |
import itertools
|
41 |
from typing import (Any, Callable, Dict, Generic, List, Mapping, Optional,
|
42 |
Sequence, TypeVar, Union)
|
43 |
+
|
44 |
from absl import logging
|
|
|
45 |
import numpy as np
|
46 |
+
from typing_extensions import Protocol
|
47 |
|
48 |
SelectorValue = List[List[bool]]
|
49 |
NumericValue = Union[int, float]
|