robotcode-plugin 1.3.0.dev6__tar.gz → 1.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode-plugin
3
- Version: 1.3.0.dev6
3
+ Version: 1.5.0
4
4
  Summary: Some classes for RobotCode plugin management
5
5
  Project-URL: Donate, https://opencollective.com/robotcode
6
6
  Project-URL: Documentation, https://github.com/robotcodedev/robotcode#readme
@@ -0,0 +1 @@
1
+ __version__ = "1.5.0"
@@ -20,7 +20,7 @@ import click
20
20
  T = TypeVar("T", bound=Enum)
21
21
 
22
22
 
23
- class EnumChoice(click.Choice, Generic[T]):
23
+ class EnumChoice(click.Choice, Generic[T]): # type: ignore[type-arg]
24
24
  """A click.Choice that accepts Enum values."""
25
25
 
26
26
  def __init__(
@@ -30,7 +30,7 @@ class EnumChoice(click.Choice, Generic[T]):
30
30
  excluded: Optional[Set[T]] = None,
31
31
  ) -> None:
32
32
  super().__init__(
33
- choices if excluded is None else (set(choices).difference(excluded)), # type: ignore
33
+ choices if excluded is None else (set(choices).difference(excluded)),
34
34
  case_sensitive,
35
35
  )
36
36
 
@@ -1 +0,0 @@
1
- __version__ = "1.3.0-dev.6"