Skip to content

Commit

Permalink
board is not used. Fix tuple.
Browse files Browse the repository at this point in the history
  • Loading branch information
bl0x committed Dec 20, 2022
1 parent 2729794 commit f659572
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions amaranth/vendor/gowin.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class GowinPlatform(TemplatedPlatform):
size = abstractproperty()
package = abstractproperty()
speed = abstractproperty()
board = abstractproperty()

@property
def _part(self):
Expand Down Expand Up @@ -119,7 +118,7 @@ def _part(self):
def __init__(self, *, toolchain="Apicula"):
super().__init__()

assert toolchain in ("Apicula")
assert toolchain in ("Apicula",)
self.toolchain = toolchain

@property
Expand Down

0 comments on commit f659572

Please sign in to comment.