From 7175f248593299ec06353bbf2ab5f719fc2419b8 Mon Sep 17 00:00:00 2001
From: Jacob Wahlman <jacwa448@student.liu.se>
Date: Tue, 25 Feb 2020 14:41:29 +0100
Subject: [PATCH] Fixed invalid abstract method override

---
 b_asic/basic_operation.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/b_asic/basic_operation.py b/b_asic/basic_operation.py
index 6810a9a7..d5d03045 100644
--- a/b_asic/basic_operation.py
+++ b/b_asic/basic_operation.py
@@ -39,7 +39,7 @@ class BasicOperation(Operation):
 		"""
 		pass
 
-	def id(self) -> OperationId:
+	def identifier(self) -> OperationId:
 		return self._identifier
 
 	def inputs(self) -> List[InputPort]:
-- 
GitLab