mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-15 22:26:55 +03:00
d50445ff30
Similar to the recent adoption of Black. isort is a Python utility to sort imports alphabetically and automatically separate into sections. By using isort, contributors can quickly and automatically conform to the projects style without thinking. Just let the tool do it. Uses the configuration recommended by the Black to avoid conflicts of style. Rewrite TestImageQt.test_deprecated to no rely on import order.
20 lines
336 B
Python
20 lines
336 B
Python
#
|
|
# The Python Imaging Library
|
|
# $Id$
|
|
#
|
|
# path interface
|
|
#
|
|
# History:
|
|
# 1996-11-04 fl Created
|
|
# 2002-04-14 fl Added documentation stub class
|
|
#
|
|
# Copyright (c) Secret Labs AB 1997.
|
|
# Copyright (c) Fredrik Lundh 1996.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
|
|
from . import Image
|
|
|
|
Path = Image.core.path
|