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
Most env agnostic way would be:
2. run docker container run -it -v pwd:/app -w /app pyfound/black bash
3. (inside the docker) run pip install black[jupyter]; pip install blue
4. (inside the docker) run blue .
Current behaviour:
The
%load_ext autoreload
%autoreload 2
in jupyter notebook gets formatted as:
""%load_ext autoreload""
'b3d554e307.'
Expected behaviour:
it is left unchanged.
The text was updated successfully, but these errors were encountered:
How to reproduce:
blue
andblack[jupyter]
installed,Most env agnostic way would be:
2. run
docker container run -it -v
pwd:/app -w /app pyfound/black bash
3. (inside the docker) run
pip install black[jupyter]; pip install blue
4. (inside the docker) run
blue .
Current behaviour:
The
in jupyter notebook gets formatted as:
Expected behaviour:
it is left unchanged.
The text was updated successfully, but these errors were encountered: