Skip to content

Commit e295c06

Browse files
committed
chore: docs
1 parent cf7fb08 commit e295c06

File tree

2 files changed

+11
-7
lines changed
  • docs/markdown/autoapi/algokit_utils

2 files changed

+11
-7
lines changed

docs/markdown/autoapi/algokit_utils/applications/enums/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## Module Contents
1111

12-
### *class* algokit_utils.applications.enums.OnSchemaBreak
12+
### *class* algokit_utils.applications.enums.OnSchemaBreak(\*args, \*\*kwds)
1313

1414
Bases: `enum.Enum`
1515

@@ -27,7 +27,7 @@ Create a new Application and delete the old Application in a single transaction
2727

2828
Create a new Application
2929

30-
### *class* algokit_utils.applications.enums.OnUpdate
30+
### *class* algokit_utils.applications.enums.OnUpdate(\*args, \*\*kwds)
3131

3232
Bases: `enum.Enum`
3333

@@ -49,7 +49,7 @@ Create a new Application and delete the old Application in a single transaction
4949

5050
Create a new application
5151

52-
### *class* algokit_utils.applications.enums.OperationPerformed
52+
### *class* algokit_utils.applications.enums.OperationPerformed(\*args, \*\*kwds)
5353

5454
Bases: `enum.Enum`
5555

docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ class Proto(Protocol):
2323
```
2424

2525
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:
2729

2830
```default
2931
class C:
@@ -42,7 +44,7 @@ only the presence of given attributes, ignoring their type signatures.
4244
Protocol classes can be generic, they are defined as:
4345

4446
```default
45-
class GenProto(Protocol[T]):
47+
class GenProto[T](Protocol):
4648
def meth(self) -> T:
4749
...
4850
```
@@ -66,7 +68,9 @@ class Proto(Protocol):
6668
```
6769

6870
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:
7074

7175
```default
7276
class C:
@@ -85,7 +89,7 @@ only the presence of given attributes, ignoring their type signatures.
8589
Protocol classes can be generic, they are defined as:
8690

8791
```default
88-
class GenProto(Protocol[T]):
92+
class GenProto[T](Protocol):
8993
def meth(self) -> T:
9094
...
9195
```

0 commit comments

Comments
 (0)