From fa4a9b92f31ad3d864454c87f3a57dcec569dd82 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sun, 27 Mar 2022 20:26:09 +0200 Subject: [PATCH] fixed imports in types/instruction_memory_section --- riscemu/types/instruction_memory_section.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscemu/types/instruction_memory_section.py b/riscemu/types/instruction_memory_section.py index 76553b0..1a2e8e0 100644 --- a/riscemu/types/instruction_memory_section.py +++ b/riscemu/types/instruction_memory_section.py @@ -1,7 +1,7 @@ from typing import List from . import MemorySection, Instruction, InstructionContext, MemoryFlags, T_RelativeAddress -from .. import MemoryAccessException +from .exceptions import MemoryAccessException class InstructionMemorySection(MemorySection):