Change list path

This commit is contained in:
Jose De Freitas 2021-02-27 19:57:10 -05:00
parent f2b67d98b8
commit e509a796b1
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import pathlib
here = pathlib.Path(__file__).parent
file_readme = here / '../../test.md'
file_readme = here / '../../readme.md'
with open(file_readme, 'r') as read_readme:
content = read_readme.readlines()

View File

@ -1,7 +1,7 @@
import pathlib
here = pathlib.Path(__file__).parent
file_readme = here / '../../test.md'
file_readme = here / '../../readme.md'
with open(file_readme, 'r') as read_readme:
content = read_readme.readlines()

View File

@ -1,7 +1,7 @@
import pathlib
here = pathlib.Path(__file__).parent
file_readme = here / '../../test.md'
file_readme = here / '../../readme.md'
with open(file_readme, 'r') as read_readme:
content = read_readme.readlines()