aiaccel.config.PackageGitStatus#

class aiaccel.config.PackageGitStatus(package_name: str, commit_id: str, status: list[str])[source]#

Represents the Git status of a package.

package_name#

The name of the package.

Type:

str

commit_id#

The current Git commit ID of the repository.

Type:

str

status#

A list of uncommitted files in the repository.

Type:

list[str]

__init__(package_name: str, commit_id: str, status: list[str]) None#

Methods

__init__(package_name, commit_id, status)

ready()

Determines if there are no uncommitted changes.

Attributes