summaryrefslogtreecommitdiff
path: root/text_recognizer/networks/convnext/residual.py
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-09-18 18:11:21 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-09-18 18:11:53 +0200
commit2cc6aa059139b57057609817913ad515063c2eab (patch)
tree5433f69a5eaf63e064a100bf900783127c7b1ff4 /text_recognizer/networks/convnext/residual.py
parent88caa5c466225d4752541c352c5777235f8f0c61 (diff)
Format imports
Format imports
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):