mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
The verbose output of flake8 is not interesting and just clutters the output. Signed-off-by: Benjamin Drung <benjamin.drung@canonical.com>
9 lines
141 B
Bash
Executable File
9 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
# Copyright 2023, Canonical Ltd.
|
|
# SPDX-License-Identifier: GPL-3.0
|
|
|
|
echo "Running flake8..."
|
|
flake8 --max-line-length=99
|