mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-25 11:25:48 -05:00
16 lines
394 B
Python
16 lines
394 B
Python
|
# SPDX-FileCopyrightText: no
|
||
|
# SPDX-License-Identifier: CC0-1.0
|
||
|
#
|
||
|
# Stubs for part of the Python API from libcalamares
|
||
|
# (although the **actual** API is presented through
|
||
|
# Boost::Python, not as a bare C-extension) so that
|
||
|
# pylint doesn't complain about libcalamares internals.
|
||
|
|
||
|
configuration = dict()
|
||
|
|
||
|
def setprogress(_): pass
|
||
|
|
||
|
def pretty_name(): return ""
|
||
|
|
||
|
def working_path(): return ""
|