#!/bin/bash
# WF 2025-07-23
packages="tests backend frontend"
for package in $packages
do
  isort $package/*.py
  black $package/*.py
done
