Skip to content

Commit

Permalink
fix(plugin_test): 应从 typing_extensions 导入 override
Browse files Browse the repository at this point in the history
  • Loading branch information
he0119 committed Apr 16, 2024
1 parent 5ce147a commit d365fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

RUNNER = """import json
import os
from typing import override
from nonebot import init, load_plugin, logger, require
from nonebot.drivers import (
Expand All @@ -43,6 +42,7 @@
)
from nonebot.drivers import Driver as BaseDriver
from pydantic import BaseModel
from typing_extensions import override
class Driver(BaseDriver, ASGIMixin, HTTPClientMixin, WebSocketClientMixin):
Expand Down

0 comments on commit d365fac

Please sign in to comment.