Skip to content

Commit 2f4697e

Browse files
Remove import re.T (#154)
re.T is not supported in python 3.13++ and actually not in use here, so we can remove it.
1 parent a53d6a2 commit 2f4697e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

deeplay/blocks/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from ast import Attribute
2-
from re import A, T
32
from typing import Any, List, Optional, Type, Union, Tuple
43
from abc import ABC, abstractmethod
54
from warnings import warn

deeplay/tests/blocks/test_base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from itertools import product
2-
from re import T
32
import unittest
43

54
import torch

0 commit comments

Comments
 (0)