fix mistake

This commit is contained in:
kjeld Schouten-Lebbing 2022-01-16 16:07:36 +01:00
parent a989fa2d6e
commit 9f46c428d0
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
setup( setup(
name="trueupdate", name="trueupdate",
version="1.0.1", version="1.0.2",
# The packages that constitute your project. # The packages that constitute your project.
# For my project, I have only one - "pydash". # For my project, I have only one - "pydash".

View File

@ -76,7 +76,7 @@ def fetch_charts():
charts = rawcharts.stdout.decode('utf-8') charts = rawcharts.stdout.decode('utf-8')
return(charts) return(charts)
def run() def run():
get_args() get_args()
charts = fetch_charts() charts = fetch_charts()
parse_charts(charts) parse_charts(charts)