From 92742437575f37961d870da6ceb4b8887da551a3 Mon Sep 17 00:00:00 2001
From: "pre-commit-ci[bot]"
 <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date: Wed, 9 Feb 2022 16:15:31 +0000
Subject: [PATCH] auto fix by pre-commit hooks

---
 tests/test_new.py | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/tests/test_new.py b/tests/test_new.py
index 0af2fce..8f3bc87 100644
--- a/tests/test_new.py
+++ b/tests/test_new.py
@@ -1,13 +1,16 @@
 import pytest
 
+
 def test_add(n_plugin_module):
     from nonebot_bison.config import Config
+
     config = Config()
     config.add_subscribe(
-            user='123',
-            user_type='group',
-            target='weibo_id',
-            target_name='weibo_name',
-            target_type='weibo',
-            cats=[],
-            tags=[])
+        user="123",
+        user_type="group",
+        target="weibo_id",
+        target_name="weibo_name",
+        target_type="weibo",
+        cats=[],
+        tags=[],
+    )