Skip to content

Commit 5f54fd1

Browse files
surgan12fmassa
authored andcommitted
Flake fixes (#750)
* flake_fixes * flake_fixes2
1 parent cd12b9a commit 5f54fd1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def patched_make_field(self, types, domain, items, **kw):
208208
# `kw` catches `env=None` needed for newer sphinx while maintaining
209209
# backwards compatibility when passed along further down!
210210

211-
# type: (List, unicode, Tuple) -> nodes.field
211+
# type: (list, unicode, tuple) -> nodes.field
212212
def handle_item(fieldarg, content):
213213
par = nodes.paragraph()
214214
par += addnodes.literal_strong('', fieldarg) # Patch: this line added

torchvision/models/inception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def forward(self, x):
9696
x = self.Mixed_5b(x)
9797
# N x 256 x 35 x 35
9898
x = self.Mixed_5c(x)
99-
# N x 288 x 35 x 35
99+
# N x 288 x 35 x 35
100100
x = self.Mixed_5d(x)
101101
# N x 288 x 35 x 35
102102
x = self.Mixed_6a(x)

0 commit comments

Comments
 (0)