Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 616 Bytes

PythonStyleGuide.md

File metadata and controls

21 lines (15 loc) · 616 Bytes

Python Style & Coding Guide

For Python code in CPAchecker, we use Black as automatic code formatter. Install it with pip3 install black and run it with black ..

We try to follow the official Python style guide PEP8.

Please use flake8 to check your code for warnings.