about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Simpkins <git.simpkins@gmail.com>2020-02-07 23:35:27 -0500
committerChris Simpkins <git.simpkins@gmail.com>2020-02-07 23:35:27 -0500
commit60889d418e37897e272844d15b03fed62c60b92d (patch)
treebe1def8218b572c23f11f8693d8de2f547da8a7b
parentadde3d443d042cd53f7448ce1d6f32e1634fcf28 (diff)
downloadrust-60889d418e37897e272844d15b03fed62c60b92d.tar.gz
rust-60889d418e37897e272844d15b03fed62c60b92d.zip
remove unnecessary semicolons
-rw-r--r--src/ci/cpu-usage-over-time.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ci/cpu-usage-over-time.py b/src/ci/cpu-usage-over-time.py
index daf21670b33..78ac0603681 100644
--- a/src/ci/cpu-usage-over-time.py
+++ b/src/ci/cpu-usage-over-time.py
@@ -148,11 +148,11 @@ else:
     print('unknown platform', sys.platform)
     sys.exit(1)
 
-cur_state = State();
+cur_state = State()
 print("Time,Idle")
 while True:
-    time.sleep(1);
-    next_state = State();
+    time.sleep(1)
+    next_state = State()
     now = datetime.datetime.utcnow().isoformat()
     idle = next_state.idle_since(cur_state)
     print("%s,%s" % (now, idle))