Skip to content

Commit

Permalink
Fix comments from review
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekcyjna committed Nov 13, 2023
1 parent bdcb746 commit e914a21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/common/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
from coreblocks.utils._typing import RecordValueDict, RecordIntDict

if TYPE_CHECKING:
from .infrastructure import CoreblockCommand
from .infrastructure import CoreblocksCommand


T = TypeVar("T")
TestGen: TypeAlias = Generator[Union[Command, Value, Statement, "CoreblockCommand", None], Any, T]
TestGen: TypeAlias = Generator[Union[Command, Value, Statement, "CoreblocksCommand", None], Any, T]


def set_inputs(values: RecordValueDict, field: Record) -> TestGen[None]:
Expand Down
4 changes: 2 additions & 2 deletions test/common/infrastructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ def elaborate(self, platform) -> HasElaborate:
return m


class CoreblockCommand(ABC):
class CoreblocksCommand(ABC):
pass


class Now(CoreblockCommand):
class Now(CoreblocksCommand):
pass


Expand Down

0 comments on commit e914a21

Please sign in to comment.