15 lines
553 B
Markdown
15 lines
553 B
Markdown
|
---
|
||
|
date: '2024-12-22T12:24:15.548833'
|
||
|
post_meta:
|
||
|
- date
|
||
|
tags:
|
||
|
- python
|
||
|
- softeng
|
||
|
type: notes
|
||
|
url: /notes/2024/12/22/1734870255
|
||
|
|
||
|
---
|
||
|
|
||
|
This morning I've been messing around with getting pyright and pylance to work well for my vscode setup. I was struggling to figure out why the tools weren't able to pick up imports from django. It turns out that by default pylance will not index types that are too deep within a library's sub-modules.
|
||
|
|
||
|
I wrote about how to fix that here https://notes.jamesravey.me/Software/pylance#autocomplete-suggestions-missing
|