Alexander Way

Results 17 issues of Alexander Way

When instantianting the djmoney.money.Money class it hints the type as `Any` when it should be `Money`. This prevents my code editor from presenting autocomplete suggestions as the type can't be...

### Describe the bug When overriding the onSubmit event handler, it seems that the values passed through are the raw values and aren't the values returned by the validator. In...

bug

When specifying a directory in `staticpaths`, staticjinja should copy the entire directory, and all sub files in one operation. Currently the files in the directory are copied one by one,...

Given the code shown below and a file structure of: * policies/document_1.pdf * policies.html ``` from staticjinja import Site if __name__ == "__main__": staticpaths = [ "policies/", ] site =...

```javascript export const { t, locale, locales, loading, loadTranslations } = new i18n(config); ``` locale exposes a svelte store which is used to get/set the locale throughout the app. However,...

enhancement
help wanted
base
typescript

The example on the homepage doesn't match that of the example within the repo's readme. Updating to avoid confusion.

This should be typed to return the value for the calling class, not `Any`: https://github.com/sbdchd/django-types/blob/main/django-stubs/utils/deconstruct.pyi#L3 ```python def deconstructible(*args: Any, path: Optional[Any] = ...) -> Any: ... ```

### Describe the problem Question.ask is typed as `Any` which makes me sad. ### Describe the solution I've not had a massive look through the codebase but the immediate solution...

Enhancement

It seems like the GitHub provider is expecting/using the Oauth app type. However, Github are now recommending github apps to be used in favour of oauth apps: https://docs.github.com/en/enterprise-cloud@latest/apps/overview#github-apps-and-oauth-apps Relevant documentation...

Closes #953 Provides functionality to allow prompts with confirmation before proceeding with the remainder of the workflow. Dry-run functionality will simply print a message saying that it will prompt the...