Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jul 28, 2023
1 parent 2d7f5de commit 2cec186
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion spinnman/extended/de_alloc_sdram_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
# limitations under the License.

from spinnman.messages.scp.impl import SDRAMDeAlloc
from spinnman.processes.abstract_multi_connection_process import AbstractMultiConnectionProcess
from spinnman.processes.abstract_multi_connection_process import (
AbstractMultiConnectionProcess)


class DeAllocSDRAMProcess(AbstractMultiConnectionProcess):
Expand Down
6 changes: 4 additions & 2 deletions spinnman/extended/extended_transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

# pylint: disable=too-many-arguments
import io
import os
import struct
import logging
import time
Expand Down Expand Up @@ -150,7 +151,9 @@ def send_scp_message(self, message, connection=None):
"""
Sends an SCP message, without expecting a response.
:param AbstractSCPRequest message: The message to send
:param message: The message to send
:type message:
spinnman.messages.scp.abstract_messages.AbstractSCPRequest
:param SCAMPConnection connection:
The connection to use (omit to pick a random one)
:raise SpinnmanTimeoutException:
Expand Down Expand Up @@ -740,4 +743,3 @@ def get_heap(self, x, y, heap=SystemVariableDefinition.sdram_heap_address):
except Exception:
logger.info(self.__where_is_xy(x, y))
raise

3 changes: 2 additions & 1 deletion spinnman/extended/write_memory_flood_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
import math
from spinnman.messages.scp.impl import (
FloodFillEnd, FloodFillStart, FloodFillData)
from spinnman.processes.abstract_multi_connection_process import AbstractMultiConnectionProcess
from spinnman.processes.abstract_multi_connection_process import (
AbstractMultiConnectionProcess)
from spinnman.constants import UDP_MESSAGE_MAX_SIZE


Expand Down

0 comments on commit 2cec186

Please sign in to comment.