Confirm that the docstring is the issue

This commit is contained in:
Adam J. Stewart 2021-07-26 15:06:44 -04:00 committed by Todd Gamblin
parent 26c3df20f1
commit ab39f548dc

View File

@ -2657,15 +2657,15 @@ def test_process(pkg, kwargs):
class BundlePackage(PackageBase):
"""General purpose bundle, or no-code, package class."""
# There are no phases by default but the property is required to support
# post-install hooks (e.g., for module generation).
#"""General purpose bundle, or no-code, package class."""
#: There are no phases by default but the property is required to support
#: post-install hooks (e.g., for module generation).
phases = [] # type: List[str]
# This attribute is used in UI queries that require to know which
# build-system class we are using
#: This attribute is used in UI queries that require to know which
#: build-system class we are using
build_system_class = 'BundlePackage'
# Bundle packages do not have associated source or binary code.
#: Bundle packages do not have associated source or binary code.
has_code = False