Diff of /utils/formatting.py [000000] .. [92cc18]

Switch to unified view

a b/utils/formatting.py
1
class SafeDict(dict):
2
    # for generating latex tables
3
    def __missing__(self, key):
4
        return '{' + key + '}'