Lukas
- 活动总数 11
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 4
-
创建于 Django - custom middleware variable
Hi, I am injecting my custom variable to the request object in middleware but PyCharm does not register that. What can I do so PyCharm starts registering the variable? I'm using the latest version... -
创建于 Django follow queryset methods
Hello, is it possible to make PyCharm follow QuerySet methods? In Django they can be easily chained, but seems like PyCharm does not like that. See the screenshot below. That's a valid call. Is th... -
创建于 Function parameters type hinting
Hello, I would like to enable an inspection that detects bad/wrong type hints in function parameters def func(my_list: list["MyModel"]): pass the list["MyModel"] is valid with my settings, howev... -
已编辑于 Enable if statement formatting
已回答Hi, I've somehow disabled following python if statement formatting, where can I enable it again? if a > 50 and b < 50 to if a > 50 > b Thanks, Luke