From c6448673c8a1ca82192031783d764dd8f68be712 Mon Sep 17 00:00:00 2001 From: Rishat Fayzullin Date: Sun, 16 Jun 2024 11:31:03 +0300 Subject: [PATCH] Linters formatting --- aiogram/filters/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/filters/command.py b/aiogram/filters/command.py index b4cc5541..f52ac263 100644 --- a/aiogram/filters/command.py +++ b/aiogram/filters/command.py @@ -3,6 +3,7 @@ from __future__ import annotations import re from dataclasses import dataclass, field, replace from typing import ( + TYPE_CHECKING, Any, Dict, Iterable, @@ -10,7 +11,6 @@ from typing import ( Optional, Pattern, Sequence, - TYPE_CHECKING, Union, cast, )