mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-19 00:16:29 +08:00
language: fix PYONValue list defaults (fixes #682)
This commit is contained in:
parent
d04d7ed120
commit
756e8a415e
@ -49,6 +49,12 @@ class _SimpleArgProcessor:
|
||||
|
||||
class PYONValue(_SimpleArgProcessor):
|
||||
"""An argument that can be any PYON-serializable value."""
|
||||
def __init__(self, default=NoDefault):
|
||||
# Override the _SimpleArgProcessor init, as list defaults are valid
|
||||
# PYON values
|
||||
if default is not NoDefault:
|
||||
self.default_value = default
|
||||
|
||||
def process(self, x):
|
||||
return pyon.decode(x)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user