#!/bin/bash
# WF 2026-03-14
for package in govservice tests
do
  isort $package/*.py
  black $package/*.py
done
