Skip to content

Commit f7f0451

Browse files
committed
Fixed linter errors
1 parent c4a0f31 commit f7f0451

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

pythonforandroid/recipes/matplotlib/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

2-
from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe, warning, Recipe
2+
from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe
33

44
from os.path import join
5-
import shutil
5+
66

77
class MatplotlibRecipe(CppCompiledComponentsPythonRecipe):
8-
8+
99
version = '3.0.3'
1010
url = 'https://github.com/matplotlib/matplotlib/archive/v{version}.zip'
1111

pythonforandroid/recipes/pil/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from pythonforandroid.recipes.Pillow import PillowRecipe
22
from pythonforandroid.logger import warning
33

4+
45
class PilRecipe(PillowRecipe):
56
"""A transparent wrapper around the Pillow recipe, it should build
67
Pillow automatically as if "pillow" were specified in the
78
requirements.
89
"""
9-
10+
1011
name = 'Pillow' # ensures the Pillow recipe directory is used where necessary
1112

1213
conflicts = ['pillow']

0 commit comments

Comments
 (0)