We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80fd576 commit c6d3f76Copy full SHA for c6d3f76
demosys/conf/settingsfile.py
@@ -17,6 +17,8 @@ def create(settings):
17
elif isinstance(value, tuple):
18
value = ",\n".join(" {}".format(to_s(v)) for v in value)
19
data += f"{name} = (\n{value})\n\n"
20
+ elif value is None:
21
+ data += f"{name} = {value}\n\n"
22
23
return data
24
0 commit comments