An error arises when importing the project due to incorrect use of quotes inside an f-string.
Replacing
return f'{self.training_date.strftime('%Y%m%d')}_{self.process_id}'
by
return f"{self.training_date.strftime('%Y%m%d')}_{self.process_id}"
Just changing the outer quotes from ' to " solves the issue.