Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
wartraxx51 committed Feb 4, 2025
1 parent 3987520 commit 2eac28a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ jobs:
shell: bash
env:
SHELLCHECK_OPTS: --exclude=SC2086 --exclude=SC2046 --exclude=SC2004 --exclude=SC2129


documentation:
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
rm -f target-repo/docs/sidebars-python-sdk.ts
cp -r source-repo/docs/docs/python-sdk/* target-repo/docs/docs-python-sdk
cp source-repo/docs/sidebars.ts target-repo/docs/sidebars-python-sdk.ts
for entry in source-repo/docs/docs/*; do
name=$(basename "$entry")
if [ "$name" != "python-sdk" ]; then
Expand Down
18 changes: 9 additions & 9 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,39 @@

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

### Installation
## Installation

```
```bash
$ yarn
```

### Local Development
## Local Development

```
```bash
$ yarn start
```

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

### Build
## Build

```
```bash
$ yarn build
```

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

### Deployment
## Deployment

Using SSH:

```
```bash
$ USE_SSH=true yarn deploy
```

Not using SSH:

```
```bash
$ GIT_USER=<Your GitHub username> yarn deploy
```

Expand Down
1 change: 1 addition & 0 deletions docs/docs/python-sdk/guides/query_data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,7 @@ Values of type `str` will be parsed using the [Pendulum](https://pendulum.eustac
</Tabs>

### Properties of attributes and relationships

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.

<Tabs groupId="async-sync">
Expand Down
1 change: 0 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import sys

from pathlib import Path

from invoke import Context, task
Expand Down

0 comments on commit 2eac28a

Please sign in to comment.