8000 Reformat for optimal line length · python/cpython@0d6dcbb · GitHub
[go: up one dir, main page]

Skip to content

Commit 0d6dcbb

Browse files
bswckAlexWaygood
andauthored
Reformat for optimal line length
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
1 parent 3cccc90 commit 0d6dcbb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/typing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2929,7 +2929,8 @@ def __round__(self, ndigits: int = 0) -> T:
29292929
pass
29302930

29312931

2932-
def _make_nmtuple(name, fields, annotate_func, module, defaults = (), classcell=collections._nmtuple_classcell_sentinel):
2932+
def _make_nmtuple(name, fields, annotate_func, module, defaults = (),
2933+
classcell=collections._nmtuple_classcell_sentinel):
29332934
nm_tpl = collections._namedtuple(name, fields, defaults=defaults,
29342935
module=module, classcell=classcell)
29352936
nm_tpl.__annotate__ = nm_tpl.__new__.__annotate__ = annotate_func

0 commit comments

Comments
 (0)
0