Clovis

Results 8 comments of Clovis

Workaround: use additionally the argument value= with date_input. A warning is issued, but only once.

The [`documentation`](https://docs.streamlit.io/library/api-reference/session-state#caveats-and-limitations) also says: > Setting the widget state via the Session State API and using the value parameter in the widget declaration is not recommended, and will throw a...

> Since you are specifying min and max dates, but not value, then the code fails because today's date isn't between those values. According to the documentation, min_date and max_date...

It depends on the definition of "normal procedures". Is ``` var x = new Object() { private int foo() { return 1; } }; System.out.println(x.foo()); ``` an abnormal procedure? Additionally,...

…while with ```python class Foo(NamedTuple): one: int two: int three: int four: int five: int six: int seven: int eight: int nine: int ten: int eleven: int twelve: int thirteen:...

Possibly related: https://github.com/pylint-dev/pylint/issues/9420

class Test has two public methods: `__getitem__` and `method1` (no warning, as expected) class MyABC1 has two public methods: `getitem` and `method1` (no warning, as expected) class MyABC2 has two...

According to this logic ("too-few-public-methods thinks anything that starts with _ is private"), then there should be a warning for `class Test` - but there is not. (same for class...