Skip to content

Commit 7054f62

Browse files
fix: typo (#24)
1 parent 0cc971d commit 7054f62

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

python_coderunner/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "vim-code-runner"
33
authors = [
44
{name = "Zahar Chernenko", email = "zaharchernenko35@gmail.com"},
55
]
6-
version = "1.0.1"
6+
version = "1.0.2"
77
requires-python = ">=3.10"
88

99
[dependency-groups]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
from .inteface import ICommandsExecutor
1+
from .interface import ICommandsExecutor
22
from .vim_commands_executor import TVimCommandsExecutor
File renamed without changes.

python_coderunner/src/commands_executor/vim_commands_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import vim
22

33
from ..config import IConfig
4-
from .inteface import ICommandsExecutor
4+
from .interface import ICommandsExecutor
55

66

77
class TVimCommandsExecutor(ICommandsExecutor):

python_coderunner/tests/unit/command_builders_dispatcher/test_glob_command_builders_dispatcher.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
import pytest
44

55
from src.command_builder import ICommandBuilder
6-
from src.command_builders_dispatcher import (
7-
TFileTypeCommandBuildersDispatcher,
8-
)
6+
from src.command_builders_dispatcher import TGlobCommandBuildersDispatcher
97

108

119
@pytest.mark.parametrize(
@@ -22,7 +20,7 @@
2220
],
2321
)
2422
def test_glob_command_builders_dispatcher(
25-
fixture_glob_command_builders_dispatcher: TFileTypeCommandBuildersDispatcher,
23+
fixture_glob_command_builders_dispatcher: TGlobCommandBuildersDispatcher,
2624
file_path: str,
2725
expected_build_result: Optional[str],
2826
) -> None:

0 commit comments

Comments
 (0)