From 0455d9cd3cbde605c867ca2e15217dbe0d98a977 Mon Sep 17 00:00:00 2001 From: Max Regan Date: Mon, 29 Nov 2021 20:59:32 +0000 Subject: [PATCH] Fix syntax error --- src/gbasm/instructions/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gbasm/instructions/__init__.py b/src/gbasm/instructions/__init__.py index 333feac..16b5c42 100755 --- a/src/gbasm/instructions/__init__.py +++ b/src/gbasm/instructions/__init__.py @@ -6,7 +6,7 @@ from .ld import Ld from .fixed import Ccf, Cpl, Daa, Di, Ei, Halt, Nop, Ret, Reti, Rla, Rlca, Rra, Scf, Stop def get_instructions() -> List[Instruction]: - return = [ + return [ Ccf(), Cpl(), Daa(),