You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug A clear and concise description of what the bug is.
When running black --fast nad_transport.py baudrate=115200 converts into baudrate=115_200 which
seems incorrect as 115_200 is not defined by pyserial
ichard26@acer-ubuntu:~$ python
Python 3.8.5 (default, Sep 9 2020, 23:45:44)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 115_200==115200
True
But regardless of language semantics, there are two solutions you have:
Pass --skip-numeric-underscore-normalization to Black to tell it to not add underscores to numeric literals
Upgrade to a newer version of Black where that behaviour was removed (for reasons you can read in Remove numeric underscore normalization #549) like 19.3b0, 19.10b0, and 20.8b1.
Describe the bug A clear and concise description of what the bug is.
When running black --fast nad_transport.py baudrate=115200 converts into baudrate=115_200 which
seems incorrect as 115_200 is not defined by pyserial
To Reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.
115_200 seems to not be defined by pyserial, so 115200 should not be altered
Environment (please complete the following information):
Debian, black, version 18.9b0
Does this bug also happen on master? To answer this, you have two options:
latest master branch.
pip install -e .
;python -m unittest
; andblack
like you did last time.Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: