Skip to content

Commit c244bda

Browse files
committed
fix html
1 parent 92cf272 commit c244bda

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tensorlayer/layers/core.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,10 @@ def nontrainable_weights(self):
198198

199199
@property
200200
def weights(self):
201-
raise Exception("no property .weights exists, do you mean .all_weights, .trainable_weights, or .nontrainable_weights ?")
202-
201+
raise Exception(
202+
"no property .weights exists, do you mean .all_weights, .trainable_weights, or .nontrainable_weights ?"
203+
)
204+
203205
def __call__(self, inputs, *args, **kwargs):
204206
"""
205207
(1) Build the Layer if necessary.

0 commit comments

Comments
 (0)