forked from calamares/calamares
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: add missing API stub-implementation for pylint
- Loading branch information
1 parent
51898ea
commit de63669
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# 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 "" |