You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
pep257 version 0.3.2 reports that it is unable to evaluate all:
Could not evaluate contents of __all__. That means pep257 cannot decide which definitions are public. Variable __all__ should be present at most once in each file, in form `__all__ = ('a_public_function', 'APublicClass', ...)`. More info on __all__: http://stackoverflow.com/q/44834/.
If I reformat all to include something on the opening line, pep257 is able to continue:
__all__ = ('a',
'b',
'c',
)
The text was updated successfully, but these errors were encountered:
With the following test file:
pep257 version 0.3.2 reports that it is unable to evaluate all:
If I reformat all to include something on the opening line, pep257 is able to continue:
The text was updated successfully, but these errors were encountered: