From c109aa3cf0793554791e704fde76633a53555efd Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 16 Dec 2024 09:28:43 +0000 Subject: [PATCH] return None --- gfe_examples/hello_world_untimed/hello_world_vertex.py | 4 ++-- gfe_examples/sync_test/sync_test_vertex.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gfe_examples/hello_world_untimed/hello_world_vertex.py b/gfe_examples/hello_world_untimed/hello_world_vertex.py index 3fd41e88..70a45fa5 100644 --- a/gfe_examples/hello_world_untimed/hello_world_vertex.py +++ b/gfe_examples/hello_world_untimed/hello_world_vertex.py @@ -88,8 +88,8 @@ def sdram_required(self) -> VariableSDRAM: return VariableSDRAM(fixed, variable) @overrides(AbstractGeneratesDataSpecification.generate_data_specification) - def generate_data_specification( - self, spec: DataSpecificationGenerator, placement: Placement): + def generate_data_specification(self, spec: DataSpecificationGenerator, + placement: Placement) -> None: # pylint: disable=arguments-differ # Generate the system data region for simulation .c requirements diff --git a/gfe_examples/sync_test/sync_test_vertex.py b/gfe_examples/sync_test/sync_test_vertex.py index 4c1de7bb..8910defd 100644 --- a/gfe_examples/sync_test/sync_test_vertex.py +++ b/gfe_examples/sync_test/sync_test_vertex.py @@ -70,8 +70,8 @@ def sdram_required(self) -> ConstantSDRAM: @overrides( AbstractGeneratesDataSpecification.generate_data_specification) - def generate_data_specification( - self, spec: DataSpecificationGenerator, placement: Placement): + def generate_data_specification(self, spec: DataSpecificationGenerator, + placement: Placement) -> None: # Generate the system data region for simulation .c requirements generate_system_data_region(spec, DataRegions.SYSTEM.value, self)