Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!493
Added ruff bugbear and simplify rules and reformatted code accordingly
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added ruff bugbear and simplify rules and reformatted code accordingly
add-ruff-settings
into
master
Overview
45
Commits
1
Pipelines
9
Changes
28
Merged
Simon Bjurek
requested to merge
add-ruff-settings
into
master
2 weeks ago
Overview
40
Commits
1
Pipelines
9
Changes
10
Expand
Added ruff bugbear and simplify rules and reformatted code accordingly.
0
0
Merge request reports
Compare
version 1
version 8
b759934e
2 weeks ago
version 7
f15c875b
2 weeks ago
version 6
e7b8d69d
2 weeks ago
version 5
41c2a742
2 weeks ago
version 4
c899092d
2 weeks ago
version 3
d0e5d659
2 weeks ago
version 2
7a4fc19f
2 weeks ago
version 1
42206c8f
2 weeks ago
master (base)
and
version 2
latest version
bd033580
1 commit,
2 weeks ago
version 8
b759934e
1 commit,
2 weeks ago
version 7
f15c875b
1 commit,
2 weeks ago
version 6
e7b8d69d
1 commit,
2 weeks ago
version 5
41c2a742
1 commit,
2 weeks ago
version 4
c899092d
1 commit,
2 weeks ago
version 3
d0e5d659
1 commit,
2 weeks ago
version 2
7a4fc19f
2 commits,
2 weeks ago
version 1
42206c8f
1 commit,
2 weeks ago
Show latest version
10 files
+
105
−
70
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
b_asic/gui_utils/mpl_window.py
+
1
−
1
Options
@@ -25,7 +25,7 @@ class MPLWindow(QDialog):
self
.
_dialog_layout
=
QVBoxLayout
()
self
.
setLayout
(
self
.
_dialog_layout
)
self
.
_plot_fig
=
Figure
(
figsize
=
(
5
,
4
),
layout
=
"
co
mpress
ed
"
)
self
.
_plot_fig
=
Figure
(
figsize
=
(
5
,
4
),
layout
=
"
co
nstrain
ed
"
)
self
.
_plot_axes
=
self
.
_plot_fig
.
subplots
(
*
subplots
)
self
.
_plot_canvas
=
FigureCanvas
(
self
.
_plot_fig
)
Loading