style: pre-commit run -a

This commit is contained in:
Henry Fredrick Schreiner
2021-01-06 18:10:32 -05:00
committed by Henry Schreiner
parent b1e5b8b647
commit 635b226a6c
39 changed files with 103 additions and 94 deletions
+5 -4
View File
@@ -1,17 +1,18 @@
#!/usr/bin/env python3
import os
from pathlib import Path
import shutil
from subprocess import run
import sys
import textwrap
import time
import click
from glob import glob
from collections import namedtuple
from glob import glob
from pathlib import Path
from subprocess import run
from urllib.parse import quote
import click
def shell(cmd, **kwargs):
return run([cmd], shell=True, **kwargs)