Diff Detail
Diff Detail
- Repository
- rTASACORAEXP Tasacora experimental code
- Lint
No Lint Coverage - Unit
No Test Coverage - Branch
- feature/csv2json
Event Timeline
Comment Actions
Some python idioms.
src/testConvertCsvToJson.py | ||
---|---|---|
13 |
better use with open(file_name, "r") as input_file: #use input_file inside the block #here the file is magically closed It's named context manager and it's good and modern way to open file see http://eigenhombre.com/2013/04/20/introduction-to-context-managers/ for explanations | |
19 |
| |
31 | this function don't look really necessary. json.dumps() should be inlined where it is called | |
41 |
| |
45 | use the if __name__ == "main" idiom see: https://docs.python.org/3/tutorial/modules.html#executing-modules-as-scripts |
Comment Actions
Abandonning changes with no activity during a long period.
@spI33n if you wish to resume this, you can restore the revision and check Xavier comment. We'll be happy to help.