There was an error while loading. Please reload this page.
1 parent 88c2983 commit 3abe18aCopy full SHA for 3abe18a
src/gucken/__init__.py
@@ -1,4 +1,4 @@
1
import warnings
2
warnings.filterwarnings('ignore', message='Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning')
3
4
-__version__ = "0.2.2"
+__version__ = "0.2.3"
src/gucken/player/android.py
@@ -3,7 +3,9 @@
# This is just that you can check if the player is an Android player
5
class AndroidPlayer(Player):
6
- pass
+ @classmethod
7
+ def is_available(cls) -> bool:
8
+ return True
9
10
11
class AndroidChoosePlayer(AndroidPlayer):
0 commit comments