File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class Command(BaseModel):
16
16
class ExtensionCommand (Command ):
17
17
"""Describes an extension command."""
18
18
19
- description = "The extension cli"
19
+ description : str = "The extension cli"
20
20
pass_through_cli : bool = False
21
21
commands : List [str ] = [
22
22
"describe" ,
@@ -30,7 +30,7 @@ class ExtensionCommand(Command):
30
30
class InvokerCommand (Command ):
31
31
"""Describes an invoker style command."""
32
32
33
- description = "The pass through invoker cli"
33
+ description : str = "The pass through invoker cli"
34
34
pass_through_cli : bool = True
35
35
commands : List [str ] = [":splat" ]
36
36
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " dagster-ext"
3
- version = " 0.1.2 "
3
+ version = " 0.1.3 "
4
4
description = " `dagster-ext` is a Meltano utility extension."
5
5
authors = [" Jules Huisman" ]
6
6
license = " Apache 2.0"
You can’t perform that action at this time.
0 commit comments