Skip to content

Commit

Permalink
Remove unused imports (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche authored May 16, 2024
1 parent 376e2da commit ed9363a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions fixca/args.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os
from argparse import ArgumentParser, Namespace
from fixlib.args import ArgumentParser as ResotoArgumentParser
from typing import Callable, List, Union
from typing import Callable, List


def parse_args(add_args: List[Callable[[ArgumentParser], None]]) -> Namespace:
Expand Down
2 changes: 1 addition & 1 deletion fixca/ca.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import cherrypy
from functools import wraps
from prometheus_client.exposition import generate_latest, CONTENT_TYPE_LATEST
from typing import Optional, Dict, Callable, Tuple, Union, Any, List
from typing import Optional, Dict, Callable, Tuple, Any, List
from cryptography.hazmat.primitives.asymmetric.rsa import RSAPrivateKey
from cryptography.x509.base import Certificate, CertificateSigningRequest
from fixlib.logger import log
Expand Down

0 comments on commit ed9363a

Please sign in to comment.