File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
docs/markdown/autoapi/algokit_utils Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 9
9
10
10
## Module Contents
11
11
12
- ### * class* algokit_utils.applications.enums.OnSchemaBreak
12
+ ### * class* algokit_utils.applications.enums.OnSchemaBreak( \* args, \*\* kwds)
13
13
14
14
Bases: ` enum.Enum `
15
15
@@ -27,7 +27,7 @@ Create a new Application and delete the old Application in a single transaction
27
27
28
28
Create a new Application
29
29
30
- ### * class* algokit_utils.applications.enums.OnUpdate
30
+ ### * class* algokit_utils.applications.enums.OnUpdate( \* args, \*\* kwds)
31
31
32
32
Bases: ` enum.Enum `
33
33
@@ -49,7 +49,7 @@ Create a new Application and delete the old Application in a single transaction
49
49
50
50
Create a new application
51
51
52
- ### * class* algokit_utils.applications.enums.OperationPerformed
52
+ ### * class* algokit_utils.applications.enums.OperationPerformed( \* args, \*\* kwds)
53
53
54
54
Bases: ` enum.Enum `
55
55
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ class Proto(Protocol):
23
23
```
24
24
25
25
Such classes are primarily used with static type checkers that recognize
26
- structural subtyping (static duck-typing), for example:
26
+ structural subtyping (static duck-typing).
27
+
28
+ For example:
27
29
28
30
``` default
29
31
class C:
@@ -42,7 +44,7 @@ only the presence of given attributes, ignoring their type signatures.
42
44
Protocol classes can be generic, they are defined as:
43
45
44
46
``` default
45
- class GenProto(Protocol [T]):
47
+ class GenProto[T](Protocol ):
46
48
def meth(self) -> T:
47
49
...
48
50
```
@@ -66,7 +68,9 @@ class Proto(Protocol):
66
68
```
67
69
68
70
Such classes are primarily used with static type checkers that recognize
69
- structural subtyping (static duck-typing), for example:
71
+ structural subtyping (static duck-typing).
72
+
73
+ For example:
70
74
71
75
``` default
72
76
class C:
@@ -85,7 +89,7 @@ only the presence of given attributes, ignoring their type signatures.
85
89
Protocol classes can be generic, they are defined as:
86
90
87
91
``` default
88
- class GenProto(Protocol [T]):
92
+ class GenProto[T](Protocol ):
89
93
def meth(self) -> T:
90
94
...
91
95
```
You can’t perform that action at this time.
0 commit comments