Fix invalid Python file encoding "utf8" (#5252)

Fix invalid Python file encoding "utf8"
This commit is contained in:
Bruno Oliveira
2019-05-23 20:24:23 -03:00
committed by GitHub
175 changed files with 184 additions and 23 deletions

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
""" command line options, ini-file and conftest.py processing. """
from __future__ import absolute_import
from __future__ import division

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import argparse
import warnings

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
class UsageError(Exception):
""" error in pytest usage or invocation"""

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import os
import py