Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
finam
Manage
Activity
Members
Labels
Plan
Issues
32
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
Commits
4e9e1eb0
Commit
4e9e1eb0
authored
2 years ago
by
Martin Lange
Browse files
Options
Downloads
Patches
Plain Diff
fix condition that got lost during rebase
parent
672b89fe
No related branches found
No related tags found
1 merge request
!238
Data memory-mapping
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/finam/sdk/output.py
+1
-1
1 addition, 1 deletion
src/finam/sdk/output.py
with
1 addition
and
1 deletion
src/finam/sdk/output.py
+
1
−
1
View file @
4e9e1eb0
...
...
@@ -175,7 +175,7 @@ class Output(IOutput, Loggable):
with
ErrorLogger
(
self
.
logger
):
xdata
=
tools
.
prepare
(
data
,
self
.
info
)
if
len
(
self
.
data
)
>
0
:
if
len
(
self
.
data
)
>
0
and
not
isinstance
(
self
.
data
[
-
1
][
1
],
str
)
:
d
=
self
.
data
[
-
1
][
1
]
if
np
.
may_share_memory
(
d
.
data
,
xdata
.
data
):
raise
FinamDataError
(
...
...
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