Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python_coderunner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "vim-code-runner"
authors = [
{name = "Zahar Chernenko", email = "zaharchernenko35@gmail.com"},
]
version = "1.0.1"
version = "1.0.2"
requires-python = ">=3.10"

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion python_coderunner/src/commands_executor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .inteface import ICommandsExecutor
from .interface import ICommandsExecutor
from .vim_commands_executor import TVimCommandsExecutor
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import vim

from ..config import IConfig
from .inteface import ICommandsExecutor
from .interface import ICommandsExecutor


class TVimCommandsExecutor(ICommandsExecutor):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
import pytest

from src.command_builder import ICommandBuilder
from src.command_builders_dispatcher import (
TFileTypeCommandBuildersDispatcher,
)
from src.command_builders_dispatcher import TGlobCommandBuildersDispatcher


@pytest.mark.parametrize(
Expand All @@ -22,7 +20,7 @@
],
)
def test_glob_command_builders_dispatcher(
fixture_glob_command_builders_dispatcher: TFileTypeCommandBuildersDispatcher,
fixture_glob_command_builders_dispatcher: TGlobCommandBuildersDispatcher,
file_path: str,
expected_build_result: Optional[str],
) -> None:
Expand Down