From 94f9d9619782db0a4c49803b5e718df56dfe2d26 Mon Sep 17 00:00:00 2001 From: Daniel Rojas Date: Tue, 19 Oct 2021 21:49:31 +0200 Subject: [PATCH] Add sample use to `devtools.txt` --- devtools.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/devtools.txt b/devtools.txt index 5343d7a..7d11556 100644 --- a/devtools.txt +++ b/devtools.txt @@ -3,9 +3,9 @@ # pip install -r devtools.txt # Code formatting -black -isort +black # black src/wireviz/*.py +isort # isort src/wireviz/*py # Development aids -pudb # visual python debugger -autoflake # to be tested +pudb # import pudb; pudb.set_trace() +autoflake # autoflake -i --remove-all-unused-imports src/wireviz/*.py