From 6370f345e1d5829e1fba59cd695c8b82c5a8c620 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Sun, 10 Dec 2017 18:36:12 -0500 Subject: bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) --- Lib/asyncio/protocols.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Lib/asyncio/protocols.py') diff --git a/Lib/asyncio/protocols.py b/Lib/asyncio/protocols.py index 80fcac9a82..57987ae446 100644 --- a/Lib/asyncio/protocols.py +++ b/Lib/asyncio/protocols.py @@ -1,7 +1,9 @@ -"""Abstract Protocol class.""" +"""Abstract Protocol base classes.""" -__all__ = ['BaseProtocol', 'Protocol', 'DatagramProtocol', - 'SubprocessProtocol'] +__all__ = ( + 'BaseProtocol', 'Protocol', 'DatagramProtocol', + 'SubprocessProtocol', +) class BaseProtocol: -- cgit v1.2.1