Skip to content
Snippets Groups Projects
Commit 1627705e authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

Composition: remove deprecation of initialize

parent 4c2dd2c4
No related branches found
No related tags found
1 merge request!281Deprecate initialize method of Composition
Pipeline #243128 failed with stages
in 2 minutes and 54 seconds
......@@ -42,7 +42,6 @@ dependencies = [
"pyproj>=3.4",
"pandas>=1.3",
"opensimplex>=0.4",
"deprecated",
]
[project.urls]
......
......@@ -17,8 +17,6 @@ from datetime import datetime
from pathlib import Path
from time import strftime
from deprecated import deprecated
from ._version import __version__
from .errors import (
FinamCircularCouplingError,
......@@ -83,13 +81,6 @@ class Composition(Loggable):
Default: "temp".
"""
@deprecated(
"Compositions are now initialized when created. To be removed in v1.0.",
version="0.6",
)
def initialize(self):
"""Initialize all modules."""
def __init__(
self,
modules,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment