Method
__init__
(self, *args: Any, **kwargs: Any)
Source from the content-addressed store, hash-verified
| 154 | """ |
| 155 | |
| 156 | def __init__(self, *args: Any, **kwargs: Any) -> None: |
| 157 | # Ignore args to __init__; real initialization belongs in |
| 158 | # initialize since we're Configurable. (there's something |
| 159 | # weird in initialization order between this class, |
| 160 | # Configurable, and TCPServer so we can't leave __init__ out |
| 161 | # completely) |
| 162 | pass |
| 163 | |
| 164 | def initialize( |
| 165 | self, |
Tested by
no test coverage detected