Skip to content

Commit

Permalink
Merge pull request #1040 from joelgarde:joelgarde-patch-1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 359516268
  • Loading branch information
Flax Authors committed Feb 25, 2021
2 parents 9ae3e18 + 1749800 commit 7bc3d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flax/linen/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class Module:
from flax import linen as nn
class Module(nn.Module):
features: Tuple[int] = [16, 4]
features: Tuple[int] = (16, 4)
def setup(self):
self.dense1 = Dense(self.features[0])
Expand Down

0 comments on commit 7bc3d5c

Please sign in to comment.