From 9f46c428d07bf7b4ba899f18e733d8a5dc17797c Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Sun, 16 Jan 2022 16:07:36 +0100 Subject: [PATCH] fix mistake --- setup.py | 2 +- trueupdate/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 83ab053e..c8f8c966 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read() setup( name="trueupdate", - version="1.0.1", + version="1.0.2", # The packages that constitute your project. # For my project, I have only one - "pydash". diff --git a/trueupdate/__init__.py b/trueupdate/__init__.py index 1a68eb9f..38d75f6d 100644 --- a/trueupdate/__init__.py +++ b/trueupdate/__init__.py @@ -76,7 +76,7 @@ def fetch_charts(): charts = rawcharts.stdout.decode('utf-8') return(charts) -def run() +def run(): get_args() charts = fetch_charts() parse_charts(charts)