diff --git a/python-stdlib/cgi/cgi.py b/python-stdlib/cgi/cgi.py index 2073722e..79cc4a73 100644 --- a/python-stdlib/cgi/cgi.py +++ b/python-stdlib/cgi/cgi.py @@ -627,7 +627,7 @@ class FieldStorage: return default def getfirst(self, key, default=None): - """ Return the first value received.""" + """Return the first value received.""" if key in self: value = self[key] if isinstance(value, list): @@ -638,7 +638,7 @@ class FieldStorage: return default def getlist(self, key): - """ Return list of received values.""" + """Return list of received values.""" if key in self: value = self[key] if isinstance(value, list):