Skip to content

Commit 3ade99a

Browse files
committed
🐛 Fix docstring
1 parent 1895e38 commit 3ade99a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tiatoolbox/models/architecture/grandqc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class Conv2dReLU(nn.Sequential):
172172
Example:
173173
>>> block = Conv2dReLU(
174174
... in_channels=32, out_channels=64, kernel_size=3, padding=1
175-
...)
175+
... )
176176
>>> x = torch.randn(1, 32, 128, 128)
177177
>>> output = block(x)
178178
>>> output.shape

0 commit comments

Comments
 (0)