(self)
| 13 | """ |
| 14 | |
| 15 | def func_wrapper(self): |
| 16 | try: # Works for version 0.6.0 |
| 17 | return pl.data_loader(fn)(self) |
| 18 | |
| 19 | except: # Works for version > 0.6.0 |
| 20 | return fn(self) |
| 21 | |
| 22 | return func_wrapper |
nothing calls this directly
no outgoing calls
no test coverage detected