maximiliancw

Results 8 comments of maximiliancw

@emsi stumbled upon this today. In addition to @csmcallister's hints, you can use the `/login/test-token` endpoint (or any other one for that matter) to check if you're current token is...

Looks like you misunderstood how `Depends` works: it takes a `Callable` which in turn provides the actual value you're depending on. For example: ```python def get_db(): try: db = Database()...

@br-allstreet I encountered the same error and found that changing the image tage to `latest` in `scripts/util/openapi-generate.sh` fixes it. I think Docker should pick the correct platform image automatically if...

I'm also experiencing this error exclusively when trying to use `TodoItem` and `TodoList` extensions. @iliyaZelenko any ideas what might cause this? `package.json`: ``` "nuxt": "^2.15.7", "tiptap-vuetify": "^2.24.0", "vuetify": "^2.5.5" ```

Seems like we can use native `tiptap-extensions` [pretty easily](https://github.com/iliyaZelenko/tiptap-vuetify#native-extensions).

Replacing all line breaks (e.g. `\n`) in the text before passing it to the regex should work? Specifically, we could do so in the [`extract_url` function](https://github.com/metachris/pdfx/blob/9e6864c5f9bcc8801e12c63a64d6efdfd1960494/pdfx/extractor.py#LL25C1-L25C1), I believe. Will try...

+1 Even with ```python # General APPEND_SLASH = False TIME_ZONE = 'UTC' LANGUAGE_CODE = 'en-us' # If you set this to False, Django will make some optimizations so as not...