mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-05 13:50:14 +00:00
7 lines
166 B
Python
7 lines
166 B
Python
|
def get_platform():
|
||
|
from os import environ
|
||
|
if 'ANDROID_ARGUMENT' in environ:
|
||
|
return 'android'
|
||
|
else:
|
||
|
import sys
|
||
|
return sys.platform
|