Skip to content

Commit 54dd004

Browse files
committed
Fixed some imports
1 parent 935bd4d commit 54dd004

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

pythonforandroid/recipes/android/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
from pythonforandroid.toolchain import CythonRecipe, shprint, ensure_dir, current_directory, ArchARM, IncludedFilesBehaviour
2+
from pythonforandroid.recipe import CythonRecipe, IncludedFilesBehaviour
33
import sh
44
from os.path import exists, join
55

pythonforandroid/recipes/pygame/__init__.py

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

2-
from pythonforandroid.toolchain import Recipe, shprint, ArchARM, current_directory, debug, info, ensure_dir
2+
from pythonforandroid.recipe import Recipe
3+
from pythonforandroid.util import current_directory, ensure_dir
4+
from pythonforandroid.logger import debug, shprint, info
35
from os.path import exists, join
46
import sh
57
import glob

pythonforandroid/recipes/vlc/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from pythonforandroid.toolchain import Recipe, shprint, current_directory, warning, info, debug
1+
from pythonforandroid.toolchain import Recipe, current_directory
2+
from pythonforandroid.logger import info, debug, shprint, warning
23
from os.path import exists, join
34
from os import environ
45
import sh

pythonforandroid/toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Out_Style, Out_Fore, Err_Style, Err_Fore,
3333
info_notify, info_main, shprint,
3434
Null_Fore, Null_Style)
35-
from pythonforandroid.util import current_directory
35+
from pythonforandroid.util import current_directory, ensure_dir
3636
from pythonforandroid.bootstrap import Bootstrap
3737
from pythonforandroid.distribution import Distribution, pretty_log_dists
3838
from pythonforandroid.graph import get_recipe_order_and_bootstrap

0 commit comments

Comments
 (0)