Skip to content

Commit

Permalink
Fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rjschwei committed Feb 23, 2024
1 parent 1b66fc3 commit 6247282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ec2imgutils/ec2uploadimg.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self,
boot_mode=None,
tpm_support=None,
imds_support=None
):
):
EC2ImgUtils.__init__(
self,
log_level=log_level,
Expand Down
4 changes: 2 additions & 2 deletions tests/test_libec2uploadimg.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
code_path = os.path.abspath('%s/../lib' % test_path)
sys.path.insert(0, code_path)

import ec2imgutils.ec2uploadimg as ec2upimg
from ec2imgutils.ec2imgutilsExceptions import (
import ec2imgutils.ec2uploadimg as ec2upimg # noqa: E402
from ec2imgutils.ec2imgutilsExceptions import ( # noqa: E402
EC2UploadImgException
)

Expand Down

0 comments on commit 6247282

Please sign in to comment.