easysettings
easysettings copied to clipboard
Easy Settings python module allows you to save and retrieve applications settings quickly and easily.
Resolves #11 ## What I did - [x] Modified the settings base class to `return self` on both `set()` and `save()`, allowing these two methods to be chained as an...
Installation of EasySeetings using setuptoosl>=59 fails with ``` File "/usr/lib/python3.9/distutils/dist.py", line 1117, in write_pkg_info self.write_pkg_file(pkg_info) File "/app/.virtualenvs/ginger/lib/python3.9/site-packages/setuptools/dist.py", line 167, in write_pkg_file write_field('Summary', single_line(self.get_description())) File "/app/.virtualenvs/ginger/lib/python3.9/site-packages/setuptools/dist.py", line 151, in single_line raise...
it easy to fix it: need add `encoding='utf-8'` in save method please fix it
There is a `setsave()` method for all classes, but this wouldn't even be needed if `set()` and `save()` were chainable. Neither have a `return`, so they're just returning `None`. There...