Changeset 1139 for framspy/evolalg/utils
- Timestamp:
- 05/08/21 12:42:58 (4 years ago)
- Location:
- framspy/evolalg/utils
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/evolalg/utils/population_save.py
r1126 r1139 5 5 6 6 class PopulationSave(Step): 7 def __init__(self, path, fields, provider=None): 7 def __init__(self, path, fields, provider=None, *args, **kwargs): 8 super(PopulationSave, self).__init__(*args, **kwargs) 8 9 self.path = path 9 10 self.provider = provider … … 19 20 20 21 def call(self, population): 22 super(PopulationSave, self).call(population) 21 23 PopulationSave.ensure_dir(self.path) 22 24 provider = self.provider
Note: See TracChangeset
for help on using the changeset viewer.