Skip to content

Commit

Permalink
Added typing to sedml data model
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Sep 24, 2024
1 parent cbddc08 commit 86eb8e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions biosimulators_utils/sedml/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class SedDocument(SedBase):

def __init__(self, level: int = 1, version: int = 3, models: "list[Model]" = None,
simulations: "list[Simulation]" = None, tasks: "list[AbstractTask]" = None,
data_generators: "list[DataGenerator]" = None, outputs: "list[Output]" = None, \
data_generators: "list[DataGenerator]" = None, outputs: "list[Output]" = None,
styles: "list[Style]" = None, metadata: Metadata = None):
"""
Args:
Expand Down Expand Up @@ -1540,7 +1540,7 @@ class Report(Output):
data_sets (:obj:`list` of :obj:`DataSet`): data sets
"""

def __init__(self, id: str = None, name:str = None, data_sets: "list[DataSet]" = None):
def __init__(self, id: str = None, name: str = None, data_sets: "list[DataSet]" = None):
"""
Args:
id (:obj:`str`, optional): id
Expand Down

0 comments on commit 86eb8e1

Please sign in to comment.