Skip to content

Commit

Permalink
Placate flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Nov 27, 2018
1 parent 887930d commit 44da0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyopencl/__init__.py
Expand Up @@ -24,7 +24,6 @@
THE SOFTWARE.
"""

import re
import six
from six.moves import input, intern

Expand Down Expand Up @@ -242,7 +241,8 @@ def _find_pyopencl_include_path():
try:
# Try to find the resource with pkg_resources (the recommended
# setuptools approach)
include_path = resource_filename(Requirement.parse("pyopencl"), "pyopencl/cl")
include_path = resource_filename(
Requirement.parse("pyopencl"), "pyopencl/cl")
except DistributionNotFound:
# If pkg_resources can't find it (e.g. if the module is part of a
# frozen application), try to find the include path in the same
Expand Down

0 comments on commit 44da0ac

Please sign in to comment.