A decorator indicating methods to be customized.
(funcobj)
| 33 | |
| 34 | |
| 35 | def customer(funcobj): |
| 36 | """A decorator indicating methods to be customized.""" |
| 37 | return funcobj |
| 38 | |
| 39 | |
| 40 | class BaseTrainProcess(ABC): |
nothing calls this directly
no outgoing calls
no test coverage detected