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