diff --git a/reportservice/automatic_run.py b/reportservice/automatic_run.py
index 854528dc376f038cd1bda70a4940d9f82efc0185..99a3293d352fac9e9a6cb6fa9bd0478e48ce598b 100644
--- a/reportservice/automatic_run.py
+++ b/reportservice/automatic_run.py
@@ -9,6 +9,7 @@ import yaml
 import zmq
 import zmq.asyncio
 
+
 async def auto_run(cfg, timeout=3000):
     """
     Run the report service automatically depending on the scheduled times
diff --git a/reportservice/report_service.py b/reportservice/report_service.py
index 11dd134f836b64f02abcd080e476383e8c38d90f..03b318df3286356c98324f1b097b64c230d257f0 100644
--- a/reportservice/report_service.py
+++ b/reportservice/report_service.py
@@ -19,6 +19,7 @@ import zmq.asyncio
 
 from messages import Errors
 
+
 loop = asyncio.get_event_loop()
 
 
@@ -64,7 +65,6 @@ async def wait_jobs(joblist):
         if len(found_jobs) == 0:
             logging.info('Plot modules is done')
             break
-        sys.stdout.write('%d\r' % counter)
         await asyncio.sleep(10)
         counter += 10
 
@@ -122,6 +122,8 @@ async def push_figures(repo_master, addf):
     repo = Repo(repo_master)
     repo.index.add(addf)
     repo.index.commit("Add {} new figures".format(len(addf)))
+    #TODO: create an async function for pushing new figures
+    # to avoid blocking the report service.
     repo.remote().push()
     logging.info('Pushed to git')