169 похожих чатов

Anyone using vs code to run Python here? Function argument's features

are not suggesting... Is that normal?

8 ответов

13 просмотров

Sometimes the languageserver needs an restart or one import is broken. Especially the latter happened more often for me.

Human- Автор вопроса
Sebastian
Sometimes the languageserver needs an restart or o...

I restarted the server. Still the same 😢

Human
I restarted the server. Still the same 😢

Its working for me after i fixed the broken imports after installing the missing dependencies or fixed them by hiding them in an try-except

Human- Автор вопроса
Sebastian
Its working for me after i fixed the broken import...

I guess you didn't get my question. def test(a): a. data = [1, 2, 3] test(data) here when I type a. Do the vscode will suggest the functions of a list?

Human
I guess you didn't get my question. def test(a): ...

the test function is missing an annotation for this. Currently it could be an int, a string or a tuple. if you change the signature to def test(a: list): then the language server knows that only lists are accepted and provides the nessesary attributes.

Human- Автор вопроса

No problem.

Sebastian
No problem.

if you want an more specific type i would recommend looking at the typing module (part of the standard lib). It has generic types that can be used to describe an set consisting of floats (Set[float]) or an function argument that itself is an function (Callable).

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта