summaryrefslogtreecommitdiff
path: root/text_recognizer/networks/convnext/residual.py
diff options
context:
space:
mode:
Diffstat (limited to 'text_recognizer/networks/convnext/residual.py')
-rw-r--r--text_recognizer/networks/convnext/residual.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/text_recognizer/networks/convnext/residual.py b/text_recognizer/networks/convnext/residual.py
index 3f44390..8e76ae9 100644
--- a/text_recognizer/networks/convnext/residual.py
+++ b/text_recognizer/networks/convnext/residual.py
@@ -1,6 +1,7 @@
"""Generic residual layer."""
from typing import Callable
-from torch import nn, Tensor
+
+from torch import Tensor, nn
class Residual(nn.Module):