Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-08-16 22:08:43 +0300
committerlovetox <philipp@hoerist.com>2022-08-16 22:08:43 +0300
commit348395b9bc3b0778be9b1c5ee3ab29ed800c6762 (patch)
treec444cb793a6ed97c3c616ba4a1cc31e84276f5fb
parent3913515fa9f4e56fc9d0589842077089e06c20a2 (diff)
cq: Group imports
-rw-r--r--gajim/gtk/chat_page.py2
-rw-r--r--gajim/gtk/main.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gajim/gtk/chat_page.py b/gajim/gtk/chat_page.py
index 4d83ec226..ec9cdee17 100644
--- a/gajim/gtk/chat_page.py
+++ b/gajim/gtk/chat_page.py
@@ -16,6 +16,7 @@ from __future__ import annotations
from typing import Any
from typing import Literal
+from typing import TYPE_CHECKING
import logging
@@ -36,7 +37,6 @@ from .chat_list_stack import ChatListStack
from .chat_stack import ChatStack
from .search_view import SearchView
-from typing import TYPE_CHECKING
if TYPE_CHECKING:
from .control import ChatControl
diff --git a/gajim/gtk/main.py b/gajim/gtk/main.py
index f47e39f23..d158b6d0f 100644
--- a/gajim/gtk/main.py
+++ b/gajim/gtk/main.py
@@ -17,6 +17,7 @@ from __future__ import annotations
from typing import Any
from typing import cast
from typing import Optional
+from typing import TYPE_CHECKING
import logging
@@ -63,7 +64,6 @@ from .structs import AccountJidParam
from .structs import AddChatActionParams
from .structs import actionmethod
-from typing import TYPE_CHECKING
if TYPE_CHECKING:
from .control import ChatControl