Skip to content

Commit

Permalink
🐛 Fix type bug in Note model
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamtt committed Jul 14, 2024
1 parent 13a9e47 commit 0b56d81
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 107 deletions.
51 changes: 27 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,30 +162,33 @@ while True:
Available config values:

```yaml
prosper-api.auth.token-cache:
default: /Users/graham/Library/Caches/prosper-api/token-cache
description: The filesystem location where the auth token will be cached.
optional: false
type: str
prosper-api.credentials.client-id:
constraint: ^[a-f0-9]{32}$
description: The client-id from Prosper.
optional: false
type: str
prosper-api.credentials.client-secret:
constraint: ^[a-f0-9]{32}$
description: The client-secret from Prosper; can be stored and accessed securely using the keyring
library.
optional: true
type: str
prosper-api.credentials.password:
description: Your Prosper password; can be stored and accessed securely using the keyring library.
optional: true
type: str
prosper-api.credentials.username:
description: Your Prosper username
optional: false
type: str
["prosper-api.credentials.client-id"]
type = "str"
optional = false
constraint = "^[a-f0-9]{32}$"
description = "The client-id from Prosper."

["prosper-api.credentials.client-secret"]
type = "str"
optional = true
constraint = "^[a-f0-9]{32}$"
description = "The client-secret from Prosper; can be stored and accessed securely using the keyring library."

["prosper-api.credentials.username"]
type = "str"
optional = false
description = "Your Prosper username"

["prosper-api.credentials.password"]
type = "str"
optional = true
description = "Your Prosper password; can be stored and accessed securely using the keyring library."

["prosper-api.auth.token-cache"]
type = "str"
optional = false
default = "/Users/graham/Library/Caches/prosper-api/token-cache"
description = "The filesystem location where the auth token will be cached."
```

## Feedback
Expand Down
Loading

0 comments on commit 0b56d81

Please sign in to comment.