sort imports with ruff

This commit is contained in:
Jörg Thalheim 2023-01-16 14:09:00 +01:00
parent 54f99b4998
commit 471aa92765
4 changed files with 5 additions and 7 deletions

View file

@ -1,9 +1,8 @@
#!/usr/bin/env python3
import subprocess
from typing import List, Union, IO, Any, Optional
from pathlib import Path
from typing import IO, Any, List, Optional, Union
_FILE = Union[None, int, IO[Any]]
_DIR = Union[None, Path, str]