Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 9, 2024
1 parent 340ff52 commit a082196
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spinn_machine/virtual_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import math
from collections import defaultdict
import logging
from typing import Dict, List, Optional, overload, Set, Tuple
from typing import Dict, List, Optional, Set, Tuple
from spinn_utilities.config_holder import get_config_str_or_none
from spinn_utilities.log import FormatAdapter
from spinn_utilities.typing.coords import XY
Expand Down Expand Up @@ -43,7 +43,8 @@ def virtual_machine(width: int, height: int, validate: bool = True):
return factory.machine


def virtual_machine_by_min_size(width: int, height: int, validate: bool = True):
def virtual_machine_by_min_size(
width: int, height: int, validate: bool = True):
"""
Create a virtual SpiNNaker machine, used for planning execution.
Expand Down

0 comments on commit a082196

Please sign in to comment.