summaryrefslogtreecommitdiff
path: root/qutebrowser/commands
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-12 13:15:41 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-13 20:26:57 +0100
commit14373db9c7f7bee0a7e0039da7bd6c039301031b (patch)
tree94543fb5dfc50ca662674d93ecaeba7be531d290 /qutebrowser/commands
parent4d859c0d2cf914fde8f943bb051d96cdb18ed64d (diff)
downloadqutebrowser-14373db9c7f7bee0a7e0039da7bd6c039301031b.tar.gz
qutebrowser-14373db9c7f7bee0a7e0039da7bd6c039301031b.zip
dataclasses: Adjust import order
See #6023
Diffstat (limited to 'qutebrowser/commands')
-rw-r--r--qutebrowser/commands/command.py2
-rw-r--r--qutebrowser/commands/runners.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/qutebrowser/commands/command.py b/qutebrowser/commands/command.py
index d8d08e50b..36dc73d5d 100644
--- a/qutebrowser/commands/command.py
+++ b/qutebrowser/commands/command.py
@@ -23,8 +23,8 @@ import inspect
import collections
import traceback
import typing
-from typing import Any, MutableMapping, MutableSequence, Tuple, Union, List, Optional
import dataclasses
+from typing import Any, MutableMapping, MutableSequence, Tuple, Union, List, Optional
from qutebrowser.api import cmdutils
from qutebrowser.commands import cmdexc, argparser
diff --git a/qutebrowser/commands/runners.py b/qutebrowser/commands/runners.py
index 4913f9e3e..b4994ffec 100644
--- a/qutebrowser/commands/runners.py
+++ b/qutebrowser/commands/runners.py
@@ -22,9 +22,9 @@
import traceback
import re
import contextlib
+import dataclasses
from typing import (TYPE_CHECKING, Callable, Dict, Iterator, Mapping, MutableMapping,
List, Optional)
-import dataclasses
from PyQt5.QtCore import pyqtSlot, QUrl, QObject