Skip to content

Commit 2eac28a

Browse files
committed
fix linter
1 parent 3987520 commit 2eac28a

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ jobs:
113113
shell: bash
114114
env:
115115
SHELLCHECK_OPTS: --exclude=SC2086 --exclude=SC2046 --exclude=SC2004 --exclude=SC2129
116-
117-
116+
117+
118118
documentation:
119119
defaults:
120120
run:

.github/workflows/sync-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
rm -f target-repo/docs/sidebars-python-sdk.ts
3636
cp -r source-repo/docs/docs/python-sdk/* target-repo/docs/docs-python-sdk
3737
cp source-repo/docs/sidebars.ts target-repo/docs/sidebars-python-sdk.ts
38-
38+
3939
for entry in source-repo/docs/docs/*; do
4040
name=$(basename "$entry")
4141
if [ "$name" != "python-sdk" ]; then

docs/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,39 @@
22

33
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
44

5-
### Installation
5+
## Installation
66

7-
```
7+
```bash
88
$ yarn
99
```
1010

11-
### Local Development
11+
## Local Development
1212

13-
```
13+
```bash
1414
$ yarn start
1515
```
1616

1717
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
1818

19-
### Build
19+
## Build
2020

21-
```
21+
```bash
2222
$ yarn build
2323
```
2424

2525
This command generates static content into the `build` directory and can be served using any static contents hosting service.
2626

27-
### Deployment
27+
## Deployment
2828

2929
Using SSH:
3030

31-
```
31+
```bash
3232
$ USE_SSH=true yarn deploy
3333
```
3434

3535
Not using SSH:
3636

37-
```
37+
```bash
3838
$ GIT_USER=<Your GitHub username> yarn deploy
3939
```
4040

docs/docs/python-sdk/guides/query_data.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@ Values of type `str` will be parsed using the [Pendulum](https://pendulum.eustac
523523
</Tabs>
524524

525525
### Properties of attributes and relationships
526+
526527
By default, the [meta data or properties](https://docs.infrahub.app/topics/metadata) of attributes and relationships are not included. We can include these properties using the `property` argument of the SDK client's `all`, `filters` or `get` method.
527528

528529
<Tabs groupId="async-sync">

tasks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import sys
2-
32
from pathlib import Path
43

54
from invoke import Context, task

0 commit comments

Comments
 (0)