Update path

This commit is contained in:
José De Freitas 2021-02-06 15:26:52 -05:00 committed by GitHub
parent cbfeea5a4c
commit 523c1383ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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