diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-03-25 17:25:54 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-03-25 17:25:54 +0900 |
commit | 83620b389e28f1248021c1c02be6834b0c023ab6 (patch) | |
tree | 85ffa3f503cc46bb28aaf9ddbe76bbae7de6672b /buildstream/sandbox/_config.py | |
parent | 3ea2297b835fb25ed959bf83119e1c39f55171ef (diff) | |
download | buildstream-83620b389e28f1248021c1c02be6834b0c023ab6.tar.gz |
sandbox/_config.py: Replace docstring with comment.
For consistency, we document private things with comments,
and public things with docstrings.
Diffstat (limited to 'buildstream/sandbox/_config.py')
-rw-r--r-- | buildstream/sandbox/_config.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/buildstream/sandbox/_config.py b/buildstream/sandbox/_config.py index 56282ca1f..ca5273864 100644 --- a/buildstream/sandbox/_config.py +++ b/buildstream/sandbox/_config.py @@ -19,11 +19,10 @@ # Jim MacArthur <jim.macarthur@codethink.co.uk> -"""A container for sandbox configuration data. We want the internals -of this to be opaque, hence putting it in its own private file. -""" - - +# SandboxConfig +# +# A container for sandbox configuration data. We want the internals +# of this to be opaque, hence putting it in its own private file. class SandboxConfig(): def __init__(self, build_uid, build_gid): self.build_uid = build_uid |