Remove extra Semicolon (#7152)

This commit is contained in:
Md Mahiuddin 2022-10-14 13:20:40 +06:00 committed by GitHub
parent 05e19128f7
commit 26fe4c6539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ class LinkedQueue:
>>> queue.put(5)
>>> queue.put(9)
>>> queue.put('python')
>>> queue.is_empty();
>>> queue.is_empty()
False
>>> queue.get()
5