mirror of
https://github.com/niess/python-appimage.git
synced 2025-07-21 04:41:14 +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())
|