Skip to content

Coding Style Checking

It ensures PEP8 coding style.

  1. Get into the api container

    docker exec -it fastapi-fullstack_api_1 /bin/bash
    
  2. Check everything

    pycodestyle .
    
  3. Automatic correction

    black .
    
Back to top