From 8ce92ceab4e5b71bd769945d92f8bbc02b6beb89 Mon Sep 17 00:00:00 2001 From: Asgeir Nyvoll Date: Fri, 26 Jan 2024 12:32:04 +0100 Subject: [PATCH] black --- tests/test_plugin_init.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_plugin_init.py b/tests/test_plugin_init.py index 04bfccc9..1e85be8d 100644 --- a/tests/test_plugin_init.py +++ b/tests/test_plugin_init.py @@ -7,7 +7,7 @@ class DistMock: - #get_logs: disable=too-few-public-methods + # get_logs: disable=too-few-public-methods def __init__(self, entry_points, name): self.metadata = {"name": name} @@ -29,7 +29,7 @@ def __init__(self, entry_points, name): def test_no_warning(monkeypatch): - #get_logs: disable=protected-access + # get_logs: disable=protected-access monkeypatch.setattr(importlib.metadata, "requires", lambda x: []) importlib.reload(webviz_config.plugins._utils) @@ -49,7 +49,7 @@ def test_no_warning(monkeypatch): def test_warning_multiple(monkeypatch): - #get_logs: disable=protected-access + # get_logs: disable=protected-access monkeypatch.setattr(importlib.metadata, "requires", lambda x: []) importlib.reload(webviz_config.plugins._utils)