Pattern: Missing whitespace after keyword Issue: - Description There should be one space after keywords. Example of incorrect code: from collections import(namedtuple, defaultdict) Example of correct code: from collections import (namedtuple, defaultdict)