From 3513a97a3d6170e91290533205495ef2fa5b4a11 Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 7 Apr 2025 23:37:44 +0200 Subject: [PATCH] fix: ruff complains about import sorting --- deltachat-rpc-client/src/deltachat_rpc_client/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py b/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py index 3bd178f18..bfbcfc70e 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py @@ -1,6 +1,6 @@ import argparse -import re import os +import re import sys from threading import Thread from typing import TYPE_CHECKING, Callable, Iterable, Optional, Tuple, Type, Union