Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
finam
Manage
Activity
Members
Labels
Plan
Issues
31
Issue boards
Milestones
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
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
FINAM
finam
Merge requests
!228
Optimize unit checks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Optimize unit checks
optimize-units
into
main
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Martin Lange
requested to merge
optimize-units
into
main
2 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Inputs convert units anyway, so no need to check for equivalence.
👍
0
👎
0
Merge request reports
Compare
main
version 1
108bc40c
2 years ago
main (base)
and
version 1
latest version
c73f1b52
1 commit,
2 years ago
version 1
108bc40c
1 commit,
2 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/finam/sdk/input.py
+
1
−
1
Options
@@ -123,7 +123,7 @@ class Input(IInput, Loggable):
with
ErrorLogger
(
self
.
logger
):
data
=
tools
.
to_units
(
data
,
self
.
_input_info
.
units
)
tools
.
check
(
data
,
data
.
name
,
self
.
_input_info
)
tools
.
check
(
data
,
data
.
name
,
self
.
_input_info
,
check_units_equivalent
=
False
)
return
data
Loading