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
338cb933
Commit
338cb933
authored
9 months ago
by
Sebastian Müller
🐈
Browse files
Options
Downloads
Patches
Plain Diff
remove initialize method from Composition and merge it with __init__
parent
6b243b1b
No related branches found
No related tags found
1 merge request
!281
Deprecate initialize method of Composition
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/finam/schedule.py
+2
-10
2 additions, 10 deletions
src/finam/schedule.py
with
2 additions
and
10 deletions
src/finam/schedule.py
+
2
−
10
View file @
338cb933
...
...
@@ -9,6 +9,7 @@ Composition
:noindex: Composition
"""
import
logging
import
os
import
sys
...
...
@@ -123,7 +124,6 @@ class Composition(Loggable):
self
.
_dependencies
=
None
self
.
_input_owners
=
None
self
.
_output_owners
=
None
self
.
_is_initialized
=
False
self
.
_is_connected
=
False
self
.
_time_frame
=
(
None
,
None
)
...
...
@@ -131,14 +131,8 @@ class Composition(Loggable):
self
.
_slot_memory_limit
=
slot_memory_limit
self
.
_slot_memory_location
=
slot_memory_location
def
initialize
(
self
):
"""
Initialize all modules.
After the call, module inputs and outputs are available for linking.
"""
# initialize
self
.
logger
.
info
(
"
init composition
"
)
if
self
.
_is_initialized
:
raise
FinamStatusError
(
"
Composition was already initialized.
"
)
for
mod
in
self
.
_modules
:
self
.
_check_status
(
mod
,
[
ComponentStatus
.
CREATED
])
...
...
@@ -163,8 +157,6 @@ class Composition(Loggable):
self
.
_check_status
(
mod
,
[
ComponentStatus
.
INITIALIZED
])
self
.
_is_initialized
=
True
def
connect
(
self
,
start_time
=
None
):
"""
Performs the connect and validate phases of the composition
...
...
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