Reset the class; indicates the class hasn't been initailized
(self)
| 14 | """ |
| 15 | |
| 16 | def __init__(self): |
| 17 | """Reset the class; indicates the class hasn't been initailized""" |
| 18 | self.initialized = False |
| 19 | |
| 20 | def initialize(self, parser): |
| 21 | """Define the common options that are used in both training and test.""" |
nothing calls this directly
no outgoing calls
no test coverage detected