Skip to content

Commit 6577a90

Browse files
kamil-certatsebix
authored andcommitted
Clean up imports in tests
1 parent 1a980e0 commit 6577a90

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

intelmq/tests/bots/outputs/misp/test_output_feed.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44

55
# -*- coding: utf-8 -*-
66
import json
7-
import select
87
import unittest
98
from pathlib import Path
109
from tempfile import TemporaryDirectory
1110

12-
from .....lib.message import Message, MessageFactory
1311
import intelmq.lib.test as test
1412
from intelmq.bots.outputs.misp.output_feed import MISPFeedOutputBot
13+
from intelmq.lib.message import MessageFactory
1514

1615
EXAMPLE_EVENT = {
1716
"classification.type": "infected-system",
@@ -347,7 +346,9 @@ def test_parameter_check_errors(self):
347346
{"attribute_mapping": "not-a-dict"},
348347
{"attribute_mapping": {"not-a-field": {}}},
349348
{"attribute_mapping": {"source.ip": "not-a-dict"}},
350-
{"tagging": {"not-all": []}}, # without event_separator, only __all__ is allowed
349+
{
350+
"tagging": {"not-all": []}
351+
}, # without event_separator, only __all__ is allowed
351352
{"tagging": {"__all__": [], "other": []}},
352353
{"event_separator": "malware.name", "tagging": ["not", "a", "dict"]},
353354
{

0 commit comments

Comments
 (0)