Deprecated method.
(self)
| 264 | |
| 265 | # region Deprecated methods |
| 266 | def new_project(self) -> BcfXml: |
| 267 | """Deprecated method.""" |
| 268 | warnings.warn("new_project is deprecated, use create_new instead.", DeprecationWarning) |
| 269 | return self.create_new() |
| 270 | |
| 271 | def get_project(self, _filepath: Optional[str] = None) -> Optional[mdl.Project]: |
| 272 | """Deprecated method.""" |
nothing calls this directly
no test coverage detected