(field)
| 414 | |
| 415 | @cachedQuery(1, "field") |
| 416 | def getMetaData(field): |
| 417 | if isinstance(field, str): |
| 418 | data = get_gamedata_session().query(MetaData).get(field) |
| 419 | else: |
| 420 | raise TypeError("Need string as argument") |
| 421 | return data |
| 422 | |
| 423 | |
| 424 | @cachedQuery(2, "itemIDs", "attributeID") |
nothing calls this directly
no test coverage detected