Skip to content
Snippets Groups Projects
Commit 88d09bbc authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[code] Code cleanup

parent 7f55777e
No related branches found
No related tags found
1 merge request!62Code cleanup
...@@ -44,6 +44,7 @@ Validation for plotters ...@@ -44,6 +44,7 @@ Validation for plotters
import os import os
import six import six
import sys
from . import dataformat from . import dataformat
from . import algorithm from . import algorithm
...@@ -227,7 +228,7 @@ class Plotter(object): ...@@ -227,7 +228,7 @@ class Plotter(object):
# At this point, `data' can be a dictionary or ``None`` # At this point, `data' can be a dictionary or ``None``
if data is None: # loads the default declaration for an algorithm if data is None: # loads the default declaration for an algorithm
self.data, self.errors = prototypes.load("plotter") self.data, self.errors = prototypes.load("plotter")
assert not self.errors, "\n * %s" % "\n *".join(self.errors) assert not self.errors, "\n * %s" % "\n *".join(self.errors) # nosec
else: # just assign it else: # just assign it
# this runs basic validation, including JSON loading if required # this runs basic validation, including JSON loading if required
self.data, self.errors = schema.validate("plotter", data) self.data, self.errors = schema.validate("plotter", data)
...@@ -400,7 +401,7 @@ class Plotter(object): ...@@ -400,7 +401,7 @@ class Plotter(object):
self.uses_dict(), self.uses_dict(),
), ),
) )
except Exception as e: except Exception:
if exc is not None: if exc is not None:
type, value, traceback = sys.exc_info() type, value, traceback = sys.exc_info()
six.reraise(exc, exc(value), traceback) six.reraise(exc, exc(value), traceback)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment