When creating a UML class model to show an exemplary plugin implementation, I stumbled over this:
|
class CffHarvestSettings(BaseModel): |
I believe that this should really be
from hermes.commands.harvest.base import HarvestSettings
class CffHarvestSettings(HarvestSettings):
...
@led02 & @SKernchen: correct?
When creating a UML class model to show an exemplary plugin implementation, I stumbled over this:
hermes/src/hermes/commands/harvest/cff.py
Line 30 in d3f4656
I believe that this should really be
@led02 & @SKernchen: correct?