cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / tools / lint-py.sh
1 #!/bin/bash
2 #
3 # SPDX-License-Identifier: GPL-2.0-only
4 #
5 # Copyright (C) 2023 EfficiOS, Inc.
6
7 exit_code=0
8
9 set -x
10
11 black --diff --check . || exit_code=1
12 flake8 || exit_code=1
13 isort . --diff --check || exit_code=1
14
15 exit $exit_code
This page took 0.028872 seconds and 4 git commands to generate.