mirror of
https://github.com/thelsing/knx.git
synced 2025-01-02 00:06:43 +01:00
19 lines
311 B
Python
19 lines
311 B
Python
from __future__ import annotations
|
|
|
|
import trampoline_module
|
|
|
|
|
|
def func():
|
|
class Test(trampoline_module.test_override_cache_helper):
|
|
def func(self):
|
|
return 42
|
|
|
|
return Test()
|
|
|
|
|
|
def func2():
|
|
class Test(trampoline_module.test_override_cache_helper):
|
|
pass
|
|
|
|
return Test()
|