From cfd80a3a2f5c576e0a63f818b242aa805b22c0cf Mon Sep 17 00:00:00 2001
From: breakthewall <joan.herisson@univ-evry.fr>
Date: Thu, 28 Jan 2021 09:10:03 +0100
Subject: [PATCH] chore(RotTable.py): modify get

---
 RotTable.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/RotTable.py b/RotTable.py
index b66c402..51a9cdd 100644
--- a/RotTable.py
+++ b/RotTable.py
@@ -42,12 +42,12 @@ class RotTable:
     ###################
 
     def getTwist(self, dinucleotide):
-        return RotTable.__Rot_Table[dinucleotide][0]
+        return self.__Rot_Table[dinucleotide][0]
 
     def getWedge(self, dinucleotide):
-        return RotTable.__Rot_Table[dinucleotide][1]
+        return self.__Rot_Table[dinucleotide][1]
 
     def getDirection(self, dinucleotide):
-        return RotTable.__Rot_Table[dinucleotide][2]
+        return self.__Rot_Table[dinucleotide][2]
 
     ###################
-- 
GitLab