diff options
author | Daniel Silverstone <daniel.silverstone@codethink.co.uk> | 2018-10-23 16:44:00 +0100 |
---|---|---|
committer | Daniel Silverstone <daniel.silverstone@codethink.co.uk> | 2018-10-25 15:43:52 +0100 |
commit | 1bf0a0313cb2129fec35745133964fcb2a8c2699 (patch) | |
tree | 609c0b6b726265125bbe6f2135ae33d3fd431ebc | |
parent | 68ec9bcf4118173e11192a93c649e360b714723c (diff) | |
download | buildstream-1bf0a0313cb2129fec35745133964fcb2a8c2699.tar.gz |
source.py: Remove unused local variable
Remove `source_kind` as it was unused.
Signed-off-by: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-rw-r--r-- | buildstream/source.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/buildstream/source.py b/buildstream/source.py index 8839747b9..5cb30a0c7 100644 --- a/buildstream/source.py +++ b/buildstream/source.py @@ -1039,7 +1039,6 @@ class Source(Plugin): return self.track(**kwargs) context = self._get_context() - source_kind = type(self) # NOTE: We are assuming here that tracking only requires substituting the # first alias used |