Skip to content

Commit

Permalink
remove init that just calls super
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jun 1, 2023
1 parent a677e01 commit 2564898
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions spinn_front_end_common/interface/ds/data_specification_reloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,6 @@ class DataSpecificationReloader(DataSpecificationBase):

__slots__ = []

def __init__(self, x, y, p, ds_db, report_writer=None):
"""
:param int x:
:param int y:
:param int p:
:type ds_db:
~spinn_front_end_common.interface.ds.DataSpecificationGenerator
:param report_writer:
Determines if a text version of the specification is to be
written and, if so, where. No report is written if this is `None`.
:type report_writer: ~io.TextIOBase or None
:raises DsDatabaseException:
If there is no core, x, y, p in the database
"""
super().__init__(x, y, p, ds_db, report_writer)

@overrides(DataSpecificationBase.reserve_memory_region)
def reserve_memory_region(
self, region, size, label=None, reference=None):
Expand Down

0 comments on commit 2564898

Please sign in to comment.