diff options
author | David Robillard <d@drobilla.net> | 2023-03-28 12:12:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-04-05 09:45:15 -0400 |
commit | 4bfbbd357d4e12522f5e8ba0a0ebc3bfc037b706 (patch) | |
tree | 89ece7e437e820a01560522f738f8ee9a8070afb /test/test_stdin.py | |
parent | d25435678a9ced05bd3a8c78ae3534c230fdfc5d (diff) | |
download | serd-4bfbbd357d4e12522f5e8ba0a0ebc3bfc037b706.tar.gz serd-4bfbbd357d4e12522f5e8ba0a0ebc3bfc037b706.tar.bz2 serd-4bfbbd357d4e12522f5e8ba0a0ebc3bfc037b706.zip |
Clean up Python scripts and add a formatting test
Diffstat (limited to 'test/test_stdin.py')
-rwxr-xr-x | test/test_stdin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_stdin.py b/test/test_stdin.py index d9e65e06..f976ca52 100755 --- a/test/test_stdin.py +++ b/test/test_stdin.py @@ -1,10 +1,12 @@ #!/usr/bin/env python3 -# Copyright 2022 David Robillard <d@drobilla.net> +# Copyright 2022-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: ISC """Test reading from stdin with serdi.""" +# pylint: disable=consider-using-f-string + import argparse import sys import shlex |