Rename utils.py -> _util.py

This commit is contained in:
Mads Marquart
2019-02-24 23:15:12 +01:00
parent 0561718917
commit bc5163adaf
3 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ from random import choice
from bs4 import BeautifulSoup as bs
from mimetypes import guess_type
from collections import OrderedDict
from .utils import *
from ._util import *
from .models import *
from .graphql import *
import time

View File

@@ -4,7 +4,7 @@ from __future__ import unicode_literals
import json
import re
from .models import *
from .utils import *
from ._util import *
# Shameless copy from https://stackoverflow.com/a/8730674
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL