first
This commit is contained in:
24
calamares/ci/libcalamares/globalstorage.py
Normal file
24
calamares/ci/libcalamares/globalstorage.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# 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.
|
||||
|
||||
def count(): return 1
|
||||
|
||||
def keys(): return []
|
||||
|
||||
def contains(_): return True
|
||||
|
||||
def value(key):
|
||||
if key in ("branding",):
|
||||
return dict()
|
||||
if key in ("partitions",):
|
||||
return list()
|
||||
return ""
|
||||
|
||||
def insert(key, value): pass
|
||||
|
||||
def remove(_): pass
|
||||
Reference in New Issue
Block a user