From: Oleg Broytman Date: Wed, 6 Sep 2023 20:45:27 +0000 (+0300) Subject: Style: Completely ignore some flake8 warnings X-Git-Tag: 5.0.0~79 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=e22c9b34182445a2ce878453d6be1cf52d467661 Style: Completely ignore some flake8 warnings E701 multiple statements on one line (colon) E722 do not use bare 'except' --- diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..4bd67c9 --- /dev/null +++ b/.flake8 @@ -0,0 +1,4 @@ +[flake8] +# E701 multiple statements on one line (colon) +# E722 do not use bare 'except' +extend-ignore = E701,E722