Skip to content
Snippets Groups Projects
Commit 3672bbf4 authored by Nils-Arne Dreier's avatar Nils-Arne Dreier
Browse files

fix(python): use boolean parameter

parent 6785040e
No related branches found
No related tags found
No related merge requests found
......@@ -918,7 +918,7 @@ class YAC:
def set_config_output_file(self, filename : str,
fileformat : ConfigOutputFormat,
sync_location : ConfigOutputSyncLoc,
include_definitions = 0):
include_definitions : bool = False):
"""
@see yac_cset_config_output_file_instance
"""
......@@ -926,7 +926,7 @@ class YAC:
filename.encode(),
fileformat.value,
sync_location.value,
include_definitions)
1 if include_definitions else 0)
class Component:
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment