getting the dict version of FLAGS
IssamLaradji opened this issue · 2 comments
IssamLaradji commented
Thanks for this great repo. Could you help met the dict
version of FlagValues
so I could have a global view of the (key, value) pairs of the object?
yilei commented
FLAGS.flag_values_dict()
returns a dict
of {flag key: flag value}
, does this work for you?
IssamLaradji commented
Yep, it did! thanks @yilei !