Add explicit kwargs name.
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
@@ -213,14 +213,14 @@ class ConverterBase(object):
|
|||||||
if not self.image:
|
if not self.image:
|
||||||
self.seek(0)
|
self.seek(0)
|
||||||
|
|
||||||
self.image = transformation.execute_on(self.image)
|
self.image = transformation.execute_on(image=self.image)
|
||||||
|
|
||||||
def transform_many(self, transformations):
|
def transform_many(self, transformations):
|
||||||
if not self.image:
|
if not self.image:
|
||||||
self.seek(0)
|
self.seek(0)
|
||||||
|
|
||||||
for transformation in transformations:
|
for transformation in transformations:
|
||||||
self.image = transformation.execute_on(self.image)
|
self.image = transformation.execute_on(image=self.image)
|
||||||
|
|
||||||
def get_page_count(self):
|
def get_page_count(self):
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user