Skip to content
This repository was archived by the owner on Feb 5, 2018. It is now read-only.
This repository was archived by the owner on Feb 5, 2018. It is now read-only.

fix csv output line #6

Description

@binary1230

For the CSV output function

General Python note: the best practice for this would be to say

with open(filename, 'w') as f:
    f.writelines(lines)

Note that even if you were writing the lines individually instead of using writelines there's no reason to use os.linesep because Python will automatically convert \n to the appropriate line ending if you open in w mode. If you wanted to NOT do that, you would open in wb mode.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions