From fc9fb8bfa84b0a187bd857a668de3ce1a41d9967 Mon Sep 17 00:00:00 2001 From: roottool Date: Mon, 22 Apr 2019 04:24:41 +0900 Subject: [PATCH] Changed position of 'import io' --- pre_commit_hooks/check_yaml.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pre_commit_hooks/check_yaml.py b/pre_commit_hooks/check_yaml.py index 9b0ac89..5b66485 100644 --- a/pre_commit_hooks/check_yaml.py +++ b/pre_commit_hooks/check_yaml.py @@ -2,9 +2,8 @@ from __future__ import print_function import argparse import collections -import sys import io - +import sys from typing import Any from typing import Generator from typing import Optional