Skip to content

Commit

Permalink
return None
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Dec 16, 2024
1 parent e8384eb commit c109aa3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gfe_examples/hello_world_untimed/hello_world_vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions gfe_examples/sync_test/sync_test_vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c109aa3

Please sign in to comment.