Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysPacheco committed Jan 17, 2022
1 parent 72a9f23 commit 5132277
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.vscode
.pytest_cache
5 changes: 3 additions & 2 deletions convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
from os import listdir
from os.path import isfile, join


def read(file):
with open(file, 'r') as f:
lines = f.readlines()
f.close()
lines = f.readlines()
f.close()
return lines


Expand Down

0 comments on commit 5132277

Please sign in to comment.