#!/bin/bash
# WF 2024-01-10
for package in lodstorage tests
do
  isort $package/*.py
  black $package/*.py
done
