Abel Cheung
Abel Cheung
I'm using action with following step configuration: ```yaml - name: Mypy review uses: tsuyoshicho/action-mypy@v3 with: reporter: github-pr-review level: warning fail_on_error: true ``` As an example, following is a multi-line `mypy`...
Currently there are multiple variable names associated with CSS usage: - `common-css` and `common-ext-css` under layout - `css` and `ext-css` under page - effectively `layout.common-googlefonts` and `page.googlefonts` are also CSS,...
Before switching to GNU gettext, charsets in locale variables are honored when displaying translations (such as `$LANG=zh_HK.UTF-8`). But after the switch it is no more useful. Right now the only...
Perhaps it is possible to launch `rifiuti` to scan all recycle bins in all drives for current user and list all related files instantly with a simple option, instead of...
Pytest is reporting `OSError` with even trivial test case below: ```python C:\Users\foobar\repo> type tests\test_datadir.py def test_datadir(shared_datadir): assert True ``` [Gist link for error log here](https://gist.github.com/abelcheung/79a4ca62db3ebce0d2b42e8f697a12f2). ---- It happens only when...
Current program naming is no more intuitive. It was a very old artifact that aimed at compatibility with the ancient `rifiuti`. There are 2 possible routes: ### The easy way...
### Pyre-check The support for PEP561 is new, so the current situation is still not fully evaluated. However some problems are immediately notable: - Don't understand re-exported symbols (need to...
Due to current implementation in annotation, BoolElement inherits from `int` instead of `bool` (actually `bool` is `@final` and not subclassable). This causes inconsistency like: ```python reveal_type(bool | BoolElement) -> int...
It is maintained in form of an extra patch plus alternative github workflow build steps. Closes #51.
Have been feeding on my own dogfood for quite a while, the annotation of `XPathObject` as XPath evaluation result is one of the spots that I feel constantly irritated. Although...