Skip to content

Commit

Permalink
Remove unnecessary pylint suppression comments
Browse files Browse the repository at this point in the history
  • Loading branch information
whonore authored and Rixxc committed Jul 2, 2024
1 parent 4568987 commit 18631b1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions python/coqtail.py
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,6 @@ def handle(self) -> None:
while not self.closed:
try:
self.working = False
# pylint: disable=unpacking-non-sequence
self.msg_id, self.bnum, func, args = self.get_msg()
self.refresh_time = 0.0
self.working = True
Expand Down Expand Up @@ -967,7 +966,6 @@ def vimeval(self, expr: List[Any], wait: bool = True) -> Any:
self.wfile.write(_to_jsonl(expr))

if wait:
# pylint: disable=unpacking-non-sequence
msg_id, res = self.get_msg(self.msg_id)
assert msg_id == -self.msg_id
return res
Expand Down

0 comments on commit 18631b1

Please sign in to comment.