Skip to content

Commit

Permalink
metacalss AbstractBase
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Oct 25, 2023
1 parent 1ce0b76 commit 6637a83
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from spinn_utilities.abstract_base import AbstractBase
from pacman.model.graphs.application import ApplicationVertex
from spinn_front_end_common.interface.provenance import ProvenanceWriter
from spinn_front_end_common.utilities.constants import BYTES_PER_WORD
from spinn_utilities.abstract_base import abstractmethod


class TDMAAwareApplicationVertex(ApplicationVertex):
class TDMAAwareApplicationVertex(ApplicationVertex, metaclass=AbstractBase):
"""
An application vertex that contains the code for using TDMA to spread
packet transmission to try to avoid overloading any SpiNNaker routers.
Expand Down

0 comments on commit 6637a83

Please sign in to comment.