Skip to content

Commit f12b7df

Browse files
authored
Merge pull request #475 from powerapi-ng/refactor/fix-codeql-unused-import
refactor(message): Fix CodeQL `py/unused-import` warnings
2 parents cec1383 + b8ce44a commit f12b7df

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/powerapi/message.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022, INRIA
1+
# Copyright (c) 2022, Inria
22
# Copyright (c) 2022, University of Lille
33
# All rights reserved.
44
#
@@ -27,16 +27,6 @@
2727
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2828
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929

30-
from __future__ import annotations
31-
from typing import TYPE_CHECKING
32-
33-
34-
if TYPE_CHECKING:
35-
from powerapi.database import BaseDB
36-
from powerapi.filter import Filter
37-
from powerapi.dispatcher import RouteTable
38-
from powerapi.formula import FormulaActor, FormulaState
39-
4030

4131
class Message:
4232
"""

0 commit comments

Comments
 (0)