mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 19:46:11 +01:00
sort imports with ruff
This commit is contained in:
parent
54f99b4998
commit
471aa92765
4 changed files with 5 additions and 7 deletions
|
|
@ -8,7 +8,6 @@ from tempfile import TemporaryDirectory
|
|||
from typing import Iterator
|
||||
|
||||
import pytest
|
||||
|
||||
from procs import run
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
#!/usr/bin/env python2
|
||||
|
||||
import sys
|
||||
import subprocess
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
from procs import run
|
||||
from direnv_project import DirenvProject
|
||||
from procs import run
|
||||
|
||||
|
||||
def common_test(direnv_project: DirenvProject) -> None:
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
#!/usr/bin/env python2
|
||||
|
||||
import sys
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
import unittest
|
||||
from typing import Optional
|
||||
|
||||
from procs import run
|
||||
from direnv_project import DirenvProject
|
||||
from procs import run
|
||||
|
||||
|
||||
def direnv_exec(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue