linter: rm unused imports, shut the linter up
This commit is contained in:
parent
a3afedfbbd
commit
844a960608
2 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,5 @@
|
|||
# pylint: disable=missing-docstring,bad-continuation
|
||||
|
||||
from app import app
|
||||
from util.streamlayerformat import StreamLayerMerger
|
||||
from formats.tarimageformatter import TarImageFormatter
|
||||
|
@ -5,10 +7,12 @@ from formats.tarimageformatter import TarImageFormatter
|
|||
import json
|
||||
import re
|
||||
|
||||
|
||||
class ACIImage(TarImageFormatter):
|
||||
""" Image formatter which produces an ACI-compatible TAR.
|
||||
"""
|
||||
|
||||
# pylint: disable=too-many-arguments
|
||||
def stream_generator(self, namespace, repository, tag, synthetic_image_id,
|
||||
layer_json, get_image_iterator, get_layer_iterator):
|
||||
# ACI Format (.tar):
|
||||
|
|
Reference in a new issue