diff --git a/pyopencl/array.py b/pyopencl/array.py
index b10c8cc47911ea8f9fe617fb32beefdfa947b398..b06dd70679651fe14fcc1c195c154cee67e3cc3c 100644
--- a/pyopencl/array.py
+++ b/pyopencl/array.py
@@ -50,7 +50,6 @@ def _get_common_dtype(obj1, obj2, queue):
                                   has_double_support(queue.device))
 
 
-
 def _get_truedivide_dtype(obj1, obj2, queue):
     # the dtype of the division result obj1 / obj2
 
@@ -70,7 +69,6 @@ def _get_truedivide_dtype(obj1, obj2, queue):
     return result
 
 
-
 # Work around PyPy not currently supporting the object dtype.
 # (Yes, it doesn't even support checking!)
 # (as of May 27, 2014 on PyPy 2.3)