diff options
author | Darius Makovsky <traveltissues@protonmail.com> | 2019-12-06 12:06:50 +0000 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-12-09 08:08:32 +0000 |
commit | 056b882cc09c1d8dd9af5a18ce1c496b8c5b9fee (patch) | |
tree | 1672ccb323152f40e7aa414e41c70f268330483c /src/buildstream/_profile.py | |
parent | 8c63b96400e290e23478acbc17d45b662fa7a208 (diff) | |
download | buildstream-056b882cc09c1d8dd9af5a18ce1c496b8c5b9fee.tar.gz |
_profile: ignore unused args
Diffstat (limited to 'src/buildstream/_profile.py')
-rw-r--r-- | src/buildstream/_profile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_profile.py b/src/buildstream/_profile.py index b3182b630..0219e8374 100644 --- a/src/buildstream/_profile.py +++ b/src/buildstream/_profile.py @@ -73,7 +73,7 @@ class _Profile: def __enter__(self): self.start() - def __exit__(self, exc_type, exc_value, traceback): + def __exit__(self, _exc_type, _exc_value, traceback): self.stop() self.save() |