Pattern: Use of tab after keyword Issue: - Description There should be only one space after a keyword. Note: The → character represents a tab. Example of incorrect code: def→func(): pass Example of correct code: def func(): pass