Skip to content

Commit fbe64ad

Browse files
committed
Fix black and isort violations
1 parent 2ef4bd6 commit fbe64ad

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

test/run_logging.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import os
33
import sys
44

5-
65
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
76

87
from watchtower import CloudWatchLogHandler # noqa: E402

test/test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,10 +318,8 @@ def test_unicode_logging(self):
318318
self.assertEqual(submit_batch.call_count, 2)
319319

320320
def test_log_group_tagging(self):
321-
322321
tags = {"tag1": "value1", "tag2": "value2"}
323-
handler = CloudWatchLogHandler(log_group_name="test_log_group_tagging",
324-
log_group_tags=tags)
322+
handler = CloudWatchLogHandler(log_group_name="test_log_group_tagging", log_group_tags=tags)
325323
logger = logging.getLogger("test_log_group_tagging")
326324
logger.addHandler(handler)
327325
logger.propagate = False

0 commit comments

Comments
 (0)