1
0
Fork 0
mirror of synced 2024-06-28 19:10:33 +12:00

lint: Fix warnings in master branch

This commit is contained in:
Cristian 2020-11-02 08:51:48 -05:00
parent c8638537e3
commit ac0ec160d1
3 changed files with 1 additions and 3 deletions

View file

@ -25,7 +25,6 @@ IS_SHELL = 'shell' in sys.argv[:3] or 'shell_plus' in sys.argv[:3]
### Django Core Settings ### Django Core Settings
################################################################################ ################################################################################
DEBUG = True
WSGI_APPLICATION = 'core.wsgi.application' WSGI_APPLICATION = 'core.wsgi.application'
ROOT_URLCONF = 'core.urls' ROOT_URLCONF = 'core.urls'

View file

@ -3,7 +3,7 @@ __package__ = 'archivebox.extractors'
from pathlib import Path from pathlib import Path
from subprocess import CompletedProcess from subprocess import CompletedProcess
from typing import Optional, Tuple, List from typing import Optional, List
import json import json
from ..index.schema import Link, ArchiveResult, ArchiveError from ..index.schema import Link, ArchiveResult, ArchiveError

View file

@ -4,7 +4,6 @@ import re
import os import os
import sys import sys
import time import time
import platform
import argparse import argparse
from math import log from math import log
from multiprocessing import Process from multiprocessing import Process