Commit 201bd01b authored by Dan Pascu's avatar Dan Pascu

Fixed abstract method

parent d82006ff
...@@ -21,7 +21,7 @@ class HeightScaler(object): ...@@ -21,7 +21,7 @@ class HeightScaler(object):
@abstractmethod @abstractmethod
def get_height(self, max_value): def get_height(self, max_value):
return NotImplemented raise NotImplementedError
class LogarithmicScaler(HeightScaler): class LogarithmicScaler(HeightScaler):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment