-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Description
This error doesn't seem to be raised anymore in the codebase itself, since namespace packages are now supported at the top level, I think the docstring should probably be updated.
Lines 19 to 25 in 82ebd22
| class NamespacePackageEncountered(GrimpException): | |
| """ | |
| Indicates that there was no __init__.py at the top level. | |
| This indicates a namespace package (see PEP 420), which is not currently supported. More | |
| typically this is just an oversight which can be fixed by adding the __init__.py file. | |
| """ |
Perhaps something like
class NamespacePackageEncountered(GrimpException):
"""
Indicates that there was unexpectedly no __init__.py at the top level.
This indicates a namespace package (see PEP 420). Previously, Grimp did not support this situation.
This error is kept for backward-compatibility reasons and is not raised by Grimp itself anymore.
"""Metadata
Metadata
Assignees
Labels
No labels