mastodonien.de

social.vivaldi.net

Zeitpunkt              Nutzer    Delta   Tröts        TNR     Titel                     Version  maxTL
Do 25.07.2024 00:00:05    51.834     +49    2.220.915    42,8 Vivaldi Social            4.2.10   1.337
Mi 24.07.2024 00:03:03    51.785     +43    2.217.217    42,8 Vivaldi Social            4.2.10   1.337
Di 23.07.2024 00:00:29    51.742     +49    2.213.035    42,8 Vivaldi Social            4.2.10   1.337
Mo 22.07.2024 00:00:32    51.693     +27    2.209.656    42,7 Vivaldi Social            4.2.10   1.337
So 21.07.2024 00:01:00    51.666     +39    2.206.038    42,7 Vivaldi Social            4.2.10   1.337
Sa 20.07.2024 00:00:00    51.627     +15    2.202.571    42,7 Vivaldi Social            4.2.10   1.337
Fr 19.07.2024 13:57:34    51.612     +74    2.201.079    42,6 Vivaldi Social            4.2.10   1.337
Do 18.07.2024 00:02:08    51.538     +37    2.196.543    42,6 Vivaldi Social            4.2.10   1.337
Mi 17.07.2024 00:02:01    51.501     +40    2.193.235    42,6 Vivaldi Social            4.2.10   1.337
Di 16.07.2024 00:01:34    51.461       0    2.190.243    42,6 Vivaldi Social            4.2.10   1.337

Do 25.07.2024 22:53

🟡

When it says only some of your Variables need Type Declarations . . .

This is a sign of confusion in the mind of the Bot

Its advice may then be horribly terrible, significantly often

def main() -> None:

a_list = list()
for a in "abcd":
a_list.append(a)

b_list = list() # Need type annotation for "b_list"
for b in "wxyz":
a_list.append(b)

print(f"{a_list=}")
print(f"{b_list=}")


main()

Like here now, what it means to say is that you sloppily copy-paste-edit'd this Python Code such that you're always appending into the "a_list" and never into the "b_list", which is probably NOT what you meant

MyPy catches this as shown, PyLance Standard and PyLance Basic miss it entirely with their "no problems have been detected in the workspace"

MyPy will hide this for you if you grudgingly give in and resort to saying: b_list: list
but then your Code will silently do the wrong things at Run Time, because you trusted too much in the wrong judgments of MyPy, after you hammered on them hard enough to make them wrong

[Öffentlich] Antw.: 0 Wtrl.: 0 Fav.: 0 · via Web

Antw. · Weiterl. · Fav. · Lesez. · Pin · Stumm · Löschen