#!/bin/bash
# WF 2025-05-05
for package in bdown tests
do
  isort $package/*.py
  black $package/*.py
done
