mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-21 16:28:17 +00:00
Add: [ALAS] set_cached_property
This commit is contained in:
parent
68c918b221
commit
2f57d390aa
@ -123,6 +123,18 @@ def has_cached_property(obj, name):
|
|||||||
return name in obj.__dict__
|
return name in obj.__dict__
|
||||||
|
|
||||||
|
|
||||||
|
def set_cached_property(obj, name, value):
|
||||||
|
"""
|
||||||
|
Set a cached property.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
obj:
|
||||||
|
name (str):
|
||||||
|
value:
|
||||||
|
"""
|
||||||
|
obj.__dict__[name] = value
|
||||||
|
|
||||||
|
|
||||||
def function_drop(rate=0.5, default=None):
|
def function_drop(rate=0.5, default=None):
|
||||||
"""
|
"""
|
||||||
Drop function calls to simulate random emulator stuck, for testing purpose.
|
Drop function calls to simulate random emulator stuck, for testing purpose.
|
||||||
|
Loading…
Reference in New Issue
Block a user