Skip to content

Commit

Permalink
lint: apply isort
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoVoges committed Oct 2, 2023
1 parent 4983d3b commit 12f9b69
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/test_copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"copy tests"
import filecmp
import hashlib
import logging
import os
import shutil
import sys
Expand All @@ -16,7 +17,6 @@
from kapitan.cli import main
from kapitan.inputs.copy import Copy
from kapitan.utils import directory_hash
import logging

logger = logging.getLogger(__name__)

Expand Down
6 changes: 3 additions & 3 deletions tests/test_vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"vault secrets tests"

import os
import shutil
import tempfile
import unittest
import shutil

from kapitan.refs.base import RefController, Revealer, RefParams
from kapitan.refs.secrets.vaultkv import VaultSecret, VaultClient, VaultError
from kapitan.refs.base import RefController, RefParams, Revealer
from kapitan.refs.secrets.vaultkv import VaultClient, VaultError, VaultSecret
from tests.vault_server import VaultServer

# Create temporary folder
Expand Down
8 changes: 4 additions & 4 deletions tests/vault_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

"hashicorp vault resource functions"

import docker
import os
import logging

import os
from time import sleep
from kapitan.errors import KapitanError

import docker
import hvac

from kapitan.errors import KapitanError

logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 12f9b69

Please sign in to comment.