Skip to content

Commit

Permalink
#60 linter
Browse files Browse the repository at this point in the history
  • Loading branch information
funkchaser committed Feb 17, 2025
1 parent 529fee4 commit 54c793e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/aixd_ara/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ def create_dataset_object(self, design_parameters, performance_attributes):
dp = DesignParameters(name="DP", dobj_list=dataobjects_from_shallow(design_parameters))
pa = PerformanceAttributes(name="PA", dobj_list=dataobjects_from_shallow(performance_attributes))

# INFO: we need to use overwrite=True here because of AIXD syntax which only checks for the existence of the folder.
# INFO: In ARA this folder is always created before. We prevent overwriting data by checking above if the folder is empty.
# INFO: we need to use overwrite=True here because of AIXD syntax
# which only checks for the existence of the folder.
# INFO: In ARA this folder is always created before.
# We prevent overwriting data by checking above if the folder is empty.
dataset = Dataset(
name=self.project_name, design_par=dp, perf_attributes=pa, root_path=self.project_root, overwrite=True
)
Expand Down

0 comments on commit 54c793e

Please sign in to comment.