Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
bliss
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
523
Issues
523
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
123
Merge Requests
123
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bliss
bliss
Commits
2d2e226f
Commit
2d2e226f
authored
Feb 12, 2020
by
Linus Pithan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-statistics-tabulate' into 'master'
scan statistics: fix import of tabulate See merge request
!2057
parents
61c28d67
1fea4205
Pipeline
#21182
failed with stages
in 53 minutes and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bliss/common/utils.py
bliss/common/utils.py
+2
-2
No files found.
bliss/common/utils.py
View file @
2d2e226f
...
...
@@ -497,7 +497,7 @@ class Statistics(object):
def
__info__
(
self
):
# due to recursion import standard here
from
bliss.
common
import
standard
from
bliss.
shell.standard
import
_tabulate
data
=
[(
"func_name"
,
"min"
,
"mean"
,
"max"
,
"std"
)]
...
...
@@ -511,7 +511,7 @@ class Statistics(object):
values
[
3
],
)
)
return
standard
.
_tabulate
(
data
)
return
_tabulate
(
data
)
class
autocomplete_property
(
property
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment