mirror of
https://github.com/niess/python-appimage.git
synced 2025-09-07 02:00:13 +02:00
8 lines
159 B
Python
8 lines
159 B
Python
import platform
|
|
|
|
from .version import version as __version__
|
|
|
|
|
|
if platform.system() != 'Linux':
|
|
raise RuntimeError('invalid system: ' + platform.system())
|