Mercurial > hgrepos > Python > libs > ConfigMix
comparison configmix/json.py @ 207:b3b5ed34d180
Handle most flake8 errors and warnings.
NOTE: E265 "block comment should start with '# ' ist not yet handled.
We would need to adjust our Python style.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sun, 05 May 2019 18:29:47 +0200 |
| parents | b5ce9a8461bf |
| children | bbe8513ea649 |
comparison
equal
deleted
inserted
replaced
| 206:5064e3a2e54a | 207:b3b5ed34d180 |
|---|---|
| 17 try: | 17 try: |
| 18 from ordereddict import OrderedDict as DictImpl | 18 from ordereddict import OrderedDict as DictImpl |
| 19 except ImportError: | 19 except ImportError: |
| 20 DictImpl = dict | 20 DictImpl = dict |
| 21 | 21 |
| 22 from .compat import u2fs | 22 from .compat import u2fs |
| 23 | 23 |
| 24 | 24 |
| 25 __all__ = ["load"] | 25 __all__ = ["load"] |
| 26 | 26 |
| 27 | 27 |
