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