Skip to content

Commit 6bdd8a9

Browse files
committed
chore(github): linting I forgot again
1 parent f436adb commit 6bdd8a9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

docs/source/auth-providers.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,8 @@ request, and is expected to have the following interface:
254254
```python
255255
from typing import Optional
256256
from giftless.auth.identity import Permission
257+
258+
257259
class Identity:
258260
name: Optional[str] = None
259261
id: Optional[str] = None
@@ -282,6 +284,8 @@ Giftless defines the following permissions on entities:
282284

283285
```python
284286
from enum import Enum
287+
288+
285289
class Permission(Enum):
286290
READ = "read"
287291
READ_META = "read-meta"

docs/source/github-lfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ git clone http://localhost:5000/$YOUR_ORG/$YOUR_REPO
2222
When you don't use a credential helper, you might get asked a few times for the same credentials before the call gets through. [Make sure to get one](https://git-scm.com/doc/credential-helpers) before it drives you insane.
2323

2424
Thanks to the [automatic LFS server discovery](https://github.com/git-lfs/git-lfs/blob/main/docs/api/server-discovery.md) this is all you should need to become LFS-enabled!
25-
25+
2626
### Pushing binary blobs
2727
Let's try pushing some binary blobs then! See also [Quickstart](quickstart.md#create-a-local-repository-and-push-some-file).
2828
```shell

examples/github-lfs/compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ services:
1919
basic:
2020
factory: giftless.transfer.basic_streaming:factory
2121
options:
22-
# use the lfs-storage volume as local storage
22+
# use the lfs-storage volume as local storage
2323
storage_class: giftless.storage.local_storage:LocalStorage
2424
storage_options:
2525
path: /lfs-storage
26-
# disable the default JWT pre-auth provider, object up/downloads get also authorized via GitHub
26+
# disable the default JWT pre-auth provider, object up/downloads get also authorized via GitHub
2727
PRE_AUTHORIZED_ACTION_PROVIDER: null
2828
command: "--http=0.0.0.0:$GIFTLESS_PORT -M -T --threads 2 -p 2 --manage-script-name --callable app"
2929
pull_policy: never # prefer local build

0 commit comments

Comments
 (0)