diff options
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generator.py b/generator.py index 93968fc..ed9b1c2 100755 --- a/generator.py +++ b/generator.py @@ -1099,9 +1099,9 @@ functions_noexcept = { 'virNWFilterBindingGetPortDev': True, } -function_classes = {} - -function_classes["None"] = [] +function_classes = { + "None": [] +} # type: Dict[str, List[Any]] # Functions returning an integral type which need special rules to # check for errors and raise exceptions. |