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 16:53:56 +0900 |
commit | 1f118ba4d9ff1a342ddcebf22be57205161209b8 (patch) | |
tree | c4b14057333239ca750c4884ecbe40186dc9b152 | |
parent | deaecdc1ad1c51096cc00d364d17cb8b0183a010 (diff) | |
download | buildstream-1f118ba4d9ff1a342ddcebf22be57205161209b8.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 dd7ccfed3..355220ff6 100644 --- a/buildstream/element.py +++ b/buildstream/element.py @@ -1924,6 +1924,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 |