Merge "captcha.py: Simplify and sort import statements"

This commit is contained in:
jenkins-bot 2024-08-19 06:02:36 +00:00 committed by Gerrit Code Review
commit 25f3750553

View file

@ -25,22 +25,18 @@
# Tweaks by Greg Sabino Mullane <greg@turnstep.com>: # Tweaks by Greg Sabino Mullane <greg@turnstep.com>:
# 2008-01-06: Add regex check to skip words containing other than a-z # 2008-01-06: Add regex check to skip words containing other than a-z
import random
import math
import hashlib
from optparse import OptionParser from optparse import OptionParser
import os import hashlib
import sys
import re
import multiprocessing
import json import json
import math
import multiprocessing
import os
import random
import re
import sys
try: try:
from PIL import Image from PIL import Image, ImageDraw, ImageEnhance, ImageFont, ImageOps
from PIL import ImageFont
from PIL import ImageDraw
from PIL import ImageEnhance
from PIL import ImageOps
except ImportError: except ImportError:
sys.exit( sys.exit(
"This script requires the Python Imaging Library - http://www.pythonware.com/products/pil/" "This script requires the Python Imaging Library - http://www.pythonware.com/products/pil/"