summaryrefslogtreecommitdiff
path: root/python/runtests.py
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2022-10-28 10:59:41 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2022-10-28 11:01:22 +0100
commit00f0c39903653772d72c9c0adce661508138c0b0 (patch)
treea5d3c0536c2edf4bb8ae314b7ae07bfc223597d8 /python/runtests.py
parent3727be24a032e0577d19ccf5ad995059f7cf6d68 (diff)
python: apply black formatting
The python/ directory hasn't been shoved into black yet (unlike topotests, where most FRR python code is.) Run black over it. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'python/runtests.py')
-rw-r--r--python/runtests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/runtests.py b/python/runtests.py
index bcf650b329..70deaa35d0 100644
--- a/python/runtests.py
+++ b/python/runtests.py
@@ -5,9 +5,11 @@ import os
try:
import _clippy
except ImportError:
- sys.stderr.write('''these tests need to be run with the _clippy C extension
+ sys.stderr.write(
+ """these tests need to be run with the _clippy C extension
module available. Try running "clippy runtests.py ...".
-''')
+"""
+ )
sys.exit(1)
os.chdir(os.path.dirname(os.path.abspath(__file__)))