Skip to content

Commit 803ebd3

Browse files
docs: replace <br> tags with newlines (#227)
1 parent 70ffac1 commit 803ebd3

File tree

2 files changed

+29
-19
lines changed

2 files changed

+29
-19
lines changed

src/finch/types/introspection.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ class Introspection(BaseModel):
2222
"""The Finch uuid of the company associated with the `access_token`."""
2323

2424
connection_type: Literal["provider", "finch"]
25-
"""
26-
The type of the connection associated with the token.<br> `provider` -
27-
connection to an external provider<br> `finch` - finch-generated data.
25+
"""The type of the connection associated with the token.
26+
27+
`provider` - connection to an external provider
28+
29+
`finch` - finch-generated data.
2830
"""
2931

3032
manual: bool

src/finch/types/shared/operation_support_matrix.py

+24-16
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,53 @@
1010

1111
class OperationSupportMatrix(BaseModel):
1212
create: Optional[OperationSupport] = None
13-
"""
14-
- `supported`: This operation is supported by both the provider and Finch <br>
13+
"""- `supported`: This operation is supported by both the provider and Finch
14+
1515
- `not_supported_by_finch`: This operation is not supported by Finch but
16-
supported by the provider <br>
16+
supported by the provider
17+
1718
- `not_supported_by_provider`: This operation is not supported by the provider,
18-
so Finch cannot support <br>
19+
so Finch cannot support
20+
1921
- `client_access_only`: This behavior is supported by the provider, but only
2022
available to the client and not to Finch
2123
"""
2224

2325
delete: Optional[OperationSupport] = None
24-
"""
25-
- `supported`: This operation is supported by both the provider and Finch <br>
26+
"""- `supported`: This operation is supported by both the provider and Finch
27+
2628
- `not_supported_by_finch`: This operation is not supported by Finch but
27-
supported by the provider <br>
29+
supported by the provider
30+
2831
- `not_supported_by_provider`: This operation is not supported by the provider,
29-
so Finch cannot support <br>
32+
so Finch cannot support
33+
3034
- `client_access_only`: This behavior is supported by the provider, but only
3135
available to the client and not to Finch
3236
"""
3337

3438
read: Optional[OperationSupport] = None
35-
"""
36-
- `supported`: This operation is supported by both the provider and Finch <br>
39+
"""- `supported`: This operation is supported by both the provider and Finch
40+
3741
- `not_supported_by_finch`: This operation is not supported by Finch but
38-
supported by the provider <br>
42+
supported by the provider
43+
3944
- `not_supported_by_provider`: This operation is not supported by the provider,
40-
so Finch cannot support <br>
45+
so Finch cannot support
46+
4147
- `client_access_only`: This behavior is supported by the provider, but only
4248
available to the client and not to Finch
4349
"""
4450

4551
update: Optional[OperationSupport] = None
46-
"""
47-
- `supported`: This operation is supported by both the provider and Finch <br>
52+
"""- `supported`: This operation is supported by both the provider and Finch
53+
4854
- `not_supported_by_finch`: This operation is not supported by Finch but
49-
supported by the provider <br>
55+
supported by the provider
56+
5057
- `not_supported_by_provider`: This operation is not supported by the provider,
51-
so Finch cannot support <br>
58+
so Finch cannot support
59+
5260
- `client_access_only`: This behavior is supported by the provider, but only
5361
available to the client and not to Finch
5462
"""

0 commit comments

Comments
 (0)