报告 Python 2 中缺少的编码注释。
示例:
class Book(object): def __init__(self): pass
应用快速修复后,将添加缺少的注释:
# coding=utf-8 class Book(object): def __init__(self): pass