From 78def18fec186bee24d595f84e1b8e602755245e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 8 Sep 2011 17:50:35 -0400 Subject: [PATCH] Standardize indentation in HDF5_Storage._save. --- h5config/storage/hdf5.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/h5config/storage/hdf5.py b/h5config/storage/hdf5.py index 93913d6..6cb3970 100644 --- a/h5config/storage/hdf5.py +++ b/h5config/storage/hdf5.py @@ -207,8 +207,8 @@ class HDF5_Storage (_FileStorage): for s in config.settings: value = None if isinstance(s, (_config.BooleanSetting, - _config.NumericSetting, - _config.FloatListSetting)): + _config.NumericSetting, + _config.FloatListSetting)): value = config[s.name] if value in [None, []]: value = s.convert_to_text(value) -- 2.26.2