[8eeb5a]: / utils / formatting.py

Download this file

5 lines (4 with data), 119 Bytes

1
2
3
4
class SafeDict(dict):
# for generating latex tables
def __missing__(self, key):
return '{' + key + '}'