http://git.arav.i2p/Arav/PiggyBank/commit/f2d2e75128774e641b49f2da103475d89902a9b1?style=unified&whitespace=ignore-all&show-outdated=
_configuration_file , ' w ' ) as cf : for key , value in self . _configuration . items ( ) : if type ( value ) is dict : for subkey , subvalue in value . items ( ) : cf . write ( f " { key } . { subkey } = { subvalue } \n " ) else : cf . write ( f " { key } = { value } \n " ) @property piggybank/currencies.py +27 -24 Unescape Escape Copy filename View File @@ -16,6 +16,9 @@ __all__ = [ "Currency", "CURRENCIES", "BaseCurrencyError", " CurrencyMismatchError " ] CURRENCIES :...