#! /bin/bash

echo

uv run flake8 --config="./.flake8" src/
EXIT_CODE=$?

if [ $EXIT_CODE -ne 0 ]; then
   echo
   exit $EXIT_CODE
fi
