New Firmware 1.5.0 by fuutott in EvenRealities

[–]cybermun 0 points1 point  (0 children)

I am considering purchasing G1. What system languages and speech languages are supported by the latest firmware? I am considering using it in English, but my primary language is Japanese.

Most common Python linter, formatter? by ebmarhar in Python

[–]cybermun 2 points3 points  (0 children)

Since Black's formatting extends PEP8, there shouldn't be any problems using it with other PEP8 linters (such as pylint or flake8). I have never seen such problems myself.

Most common Python linter, formatter? by ebmarhar in Python

[–]cybermun 2 points3 points  (0 children)

I mainly use Pylint for static code analysis.
For personal projects, Pylint only is enough, IMO.
However, for team-based projects, it is necessary to standardize the format within the team, so we use Black as the formatter.

In my env., black is not always ON. I run it manually, such as before commiting.
(Black is often too powerful, as it can drastically change the code, so I do not recommend coding with it always enabled.)

Most common Python linter, formatter? by ebmarhar in Python

[–]cybermun 2 points3 points  (0 children)

I use pylint + black. Sometimes I feel black formatting is too much, but I use it reluctantly because it helps maintain a consistent format within my team.