Skip to content

Commit 60889d4

Browse files
committed
remove unnecessary semicolons
1 parent adde3d4 commit 60889d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ci/cpu-usage-over-time.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ def idle_since(self, prev):
148148
print('unknown platform', sys.platform)
149149
sys.exit(1)
150150

151-
cur_state = State();
151+
cur_state = State()
152152
print("Time,Idle")
153153
while True:
154-
time.sleep(1);
155-
next_state = State();
154+
time.sleep(1)
155+
next_state = State()
156156
now = datetime.datetime.utcnow().isoformat()
157157
idle = next_state.idle_since(cur_state)
158158
print("%s,%s" % (now, idle))

0 commit comments

Comments
 (0)