#!/bin/bash
# WF 2024-08-15
for package in basemkit tests
do
  isort $package/*.py
  black $package/*.py
done
