From 8c1e1da565bca9cec792323eb728e288715ef7c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Wed, 22 Sep 2021 01:33:59 +0200 Subject: [3.10] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28511) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Terry Jan Reedy Co-authored-by: Serhiy Storchaka Co-authored-by: Ɓukasz Langa (cherry picked from commit 8f943ca25732d548cf9f0b0393ba8d582fb93e29) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com> --- Lib/graphlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/graphlib.py') diff --git a/Lib/graphlib.py b/Lib/graphlib.py index d0e7a4814c..1c5d9a413c 100644 --- a/Lib/graphlib.py +++ b/Lib/graphlib.py @@ -17,7 +17,7 @@ class _NodeInfo: self.npredecessors = 0 # List of successor nodes. The list can contain duplicated elements as - # long as they're all reflected in the successor's npredecessors attribute). + # long as they're all reflected in the successor's npredecessors attribute. self.successors = [] -- cgit v1.2.1