Skip to content

Commit 8a04e8e

Browse files
committed
docstrings
1 parent 9384a4c commit 8a04e8e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

pythonforandroid/bdistapk.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def argv_contains(t):
1616

1717

1818
class Bdist(Command):
19-
description = 'Create an APK with python-for-android'
2019

2120
user_options = []
2221

@@ -133,14 +132,22 @@ def prepare_build_dir(self):
133132

134133

135134
class BdistAPK(Bdist):
136-
""""""
135+
"""
136+
distutil command handler for 'apk'
137+
"""
138+
description = 'Create an APK with python-for-android'
139+
137140
@property
138141
def package_type(self):
139142
return "apk"
140143

141144

142145
class BdistAAR(Bdist):
143-
""""""
146+
"""
147+
distutil command handler for 'aar'
148+
"""
149+
description = 'Create an AAR with python-for-android'
150+
144151
@property
145152
def package_type(self):
146153
return "aar"

0 commit comments

Comments
 (0)