Skip to content

Commit 660d8f9

Browse files
committed
style: change ruff formatting settings
1 parent e79804c commit 660d8f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+96
-45
lines changed

packages/analyze/src/robotcode/analyze/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from typing import Tuple, Union
22

33
import click
4+
45
from robotcode.analyze.config import AnalyzerConfig
56
from robotcode.plugin import Application, pass_application
67
from robotcode.robot.config.loader import (

packages/analyze/src/robotcode/analyze/hooks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from typing import Any, List, Tuple, Type
22

33
import click
4+
45
from robotcode.plugin import hookimpl
56

67
from .cli import analyze

packages/debugger/src/robotcode/debugger/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from typing import Optional, Sequence, Tuple
33

44
import click
5+
56
from robotcode.core.types import ServerMode
67
from robotcode.plugin import Application, UnknownError, pass_application
78
from robotcode.plugin.click_helper.options import (

packages/debugger/src/robotcode/debugger/debugger.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
from robot.running import EXECUTION_CONTEXTS, Keyword, TestCase, TestSuite
3939
from robot.utils import NormalizedDict
4040
from robot.variables import evaluate_expression
41+
4142
from robotcode.core.event import event
4243
from robotcode.core.utils.logging import LoggingDescriptor
4344
from robotcode.robot.utils import get_robot_version

packages/debugger/src/robotcode/debugger/hooks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from typing import List
22

33
import click
4+
45
from robotcode.plugin import hookimpl
56

67
from .cli import debug

packages/debugger/src/robotcode/debugger/launcher/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from typing import Optional, Sequence
22

33
import click
4+
45
from robotcode.core.types import ServerMode
56
from robotcode.core.utils.cli import show_hidden_arguments
67
from robotcode.plugin import Application, UnknownError, pass_application

packages/debugger/src/robotcode/debugger/run.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
)
1515

1616
import click
17+
1718
from robotcode.core.async_tools import (
1819
run_coroutine_from_thread_async,
1920
run_coroutine_in_thread,

packages/jsonrpc2/src/robotcode/jsonrpc2/server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818
cast,
1919
)
2020

21+
from typing_extensions import Self
22+
2123
from robotcode.core.types import ServerMode, TcpParams
2224
from robotcode.core.utils.logging import LoggingDescriptor
23-
from typing_extensions import Self
2425

2526
from .protocol import JsonRPCException
2627

packages/language_server/src/robotcode/language_server/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from typing import Final, Optional, Sequence, Union
44

55
import click
6+
67
from robotcode.core.types import ServerMode, TcpParams
78
from robotcode.plugin import Application, UnknownError, pass_application
89
from robotcode.plugin.click_helper.options import (

packages/language_server/src/robotcode/language_server/hooks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from typing import List
22

33
import click
4+
45
from robotcode.plugin import hookimpl
56

67
from .cli import language_server

0 commit comments

Comments
 (0)