diff --git a/python/serialbox/Serializer.py b/python/serialbox/Serializer.py index 65e0407..1b912d6 100644 --- a/python/serialbox/Serializer.py +++ b/python/serialbox/Serializer.py @@ -1,14 +1,10 @@ #This file is released under terms of BSD license` #See LICENSE.txt for more information -""" -Serializer module used to read serialized data -""" +"""Serializer module used to read serialized data""" class Savepoint(dict): - """ - Represents a serializer savepoint - """ + """Represents a serializer savepoint""" def __init__(self, ser, savepoint): self.savepoint = savepoint self.serializer = ser diff --git a/python/serialbox/Visualizer.py b/python/serialbox/Visualizer.py index fd5b3b4..1971589 100644 --- a/python/serialbox/Visualizer.py +++ b/python/serialbox/Visualizer.py @@ -1,9 +1,8 @@ #This file is released under terms of BSD license` #See LICENSE.txt for more information -""" -Visualizer module used for visualization of serialized data. -""" +"""Visualizer module used for visualization of serialized data.""" + import numpy as np from matplotlib import pyplot as plt from matplotlib.widgets import Slider, CheckButtons diff --git a/python/serialbox/serialization.py b/python/serialbox/serialization.py index 6d117d2..5b57886 100644 --- a/python/serialbox/serialization.py +++ b/python/serialbox/serialization.py @@ -1,9 +1,7 @@ #This file is released under terms of BSD license` #See LICENSE.txt for more information -""" -Internal serialization module that wraps the dynamic library of serialbox. - +"""Internal serialization module that wraps the dynamic library of serialbox. This module is used by the Serializer module. """ diff --git a/python/test.py b/python/test.py index 2432eae..957e438 100755 --- a/python/test.py +++ b/python/test.py @@ -5,7 +5,6 @@ import unittest class Test(unittest.TestCase): - def test_load_serializer(self): from serialbox import Serializer @@ -13,4 +12,5 @@ def test_load_visualizer(self): from serialbox import Visualizer if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() + \ No newline at end of file