Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.core
Commits
88d09bbc
Commit
88d09bbc
authored
6 years ago
by
Samuel GAIST
Browse files
Options
Downloads
Patches
Plain Diff
[code] Code cleanup
parent
7f55777e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!62
Code cleanup
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
beat/core/plotter.py
+3
-2
3 additions, 2 deletions
beat/core/plotter.py
with
3 additions
and
2 deletions
beat/core/plotter.py
+
3
−
2
View file @
88d09bbc
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment