Skip to content

Commit 89645cd

Browse files
chore: use #: for class property docs
Signed-off-by: Mohammad Abdollahpour <[email protected]>
1 parent 2f324be commit 89645cd

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/macaron/repo_verifier/repo_verifier_base.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,27 @@ def find_file_in_repo(root_dir: Path, filename: str) -> Path | None:
6060
class RepositoryVerificationStatus(str, Enum):
6161
"""A class to store the status of the repo verification."""
6262

63-
# We found evidence to prove that the repository can be linked back to the publisher of the artifact.
63+
#: We found evidence to prove that the repository can be linked back to the publisher of the artifact.
6464
PASSED = "passed"
6565

66-
# We found evidence showing that the repository is not the publisher of the artifact.
66+
#: We found evidence showing that the repository is not the publisher of the artifact.
6767
FAILED = "failed"
6868

69-
# We could not find any evidence to prove or disprove that the repository can be linked back to the artifact.
69+
#: We could not find any evidence to prove or disprove that the repository can be linked back to the artifact.
7070
UNKNOWN = "unknown"
7171

7272

7373
@dataclass(frozen=True)
7474
class RepositoryVerificationResult:
7575
"""A class to store the information about repository verification."""
7676

77+
#: The status of the repository verification.
7778
status: RepositoryVerificationStatus
79+
80+
#: The reason for the verification result.
7881
reason: str
82+
83+
#: The build tool used to build the package.
7984
build_tool: BaseBuildTool
8085

8186

0 commit comments

Comments
 (0)