Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
10
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Merge requests
!822
fix ylim=None bug
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix ylim=None bug
plotFix
into
develop
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Peter Lünenschloß
requested to merge
plotFix
into
develop
10 months ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
fixes a bug that came with merge of
yscope
and originates from
axes.set(ylim=None)
setting the view limit to
[0,1]
defaultly
(didnt update the
changelog
since
yscope
was only just added in this iteration: that ok?)
👍
0
👎
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
18ab681f
1 commit,
10 months ago
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
saqc/funcs/tools.py
+
2
−
1
Options
@@ -503,8 +503,9 @@ class ToolsMixin:
and
not
isinstance
(
yscope
[
0
],
(
list
,
tuple
))
):
yscope
=
tuple
(
yscope
)
if
yscope
is
not
None
:
ax_kwargs
.
update
({
"
ylim
"
:
yscope
})
ax_kwargs
.
update
({
"
ylim
"
:
yscope
})
if
not
path
:
mpl
.
use
(
_MPL_DEFAULT_BACKEND
)
Loading