diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-09-08 16:00:32 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-09-10 15:56:12 +0900 |
commit | eb9eb6dbb9be7b90f496bd98dbdeb2e14b9eb2ac (patch) | |
tree | 2f84abd761a3402765af940c9f421593bf6196f5 | |
parent | d2f5c4f33394da5237276695df1d57a7d81664b2 (diff) | |
download | buildstream-eb9eb6dbb9be7b90f496bd98dbdeb2e14b9eb2ac.tar.gz |
element.py: Adding missing API documenting comment
-rw-r--r-- | buildstream/element.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/buildstream/element.py b/buildstream/element.py index 6a6d1a9b8..560712854 100644 --- a/buildstream/element.py +++ b/buildstream/element.py @@ -1833,6 +1833,13 @@ class Element(Plugin): def _get_artifact_size(self): return self.__artifact_size + # _get_artifact_cache() + # + # Accessor for the artifact cache + # + # Returns: + # (ArtifactCache): The artifact cache + # def _get_artifact_cache(self): return self.__artifacts |