You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2021/08/07 07:53:36 UTC

[buildstream] 01/04: _context.py: Fixed linting warning about unused import

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch tristan/unaliased-sources
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit e9b68bedaf75467151debd76ba1a8a4000dfdca7
Author: Tristan van Berkom <tr...@codethink.co.uk>
AuthorDate: Sat Aug 7 16:52:56 2021 +0900

    _context.py: Fixed linting warning about unused import
---
 src/buildstream/_context.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/buildstream/_context.py b/src/buildstream/_context.py
index 540f376..feec102 100644
--- a/src/buildstream/_context.py
+++ b/src/buildstream/_context.py
@@ -17,7 +17,7 @@
 #  Authors:
 #        Tristan Van Berkom <tr...@codethink.co.uk>
 
-from typing import TYPE_CHECKING, List, Dict, Set, Tuple, Optional, Iterable
+from typing import TYPE_CHECKING, List, Dict, Set, Optional, Iterable
 
 import os
 import shutil