diff --git a/python/dune/perftool/pdelab/driver.py b/python/dune/perftool/pdelab/driver.py
index 222a67548d3ba0d649f157ea29d4694bd244e6f7..a56360005533aef4fdadb52ec4da9971cf391c97 100644
--- a/python/dune/perftool/pdelab/driver.py
+++ b/python/dune/perftool/pdelab/driver.py
@@ -136,8 +136,8 @@ def typedef_grid(name):
         include_file("dune/grid/yaspgrid.hh", filetag="driver")
     else:
         if any(_form.ufl_cell().cellname() in x for x in ["triangle", "tetrahedron"]):
-            #gridt = "Dune::UGGrid<{}>".format(dim)
-            #include_file("dune/grid/uggrid.hh", filetag="driver")
+            # gridt = "Dune::UGGrid<{}>".format(dim)
+            # include_file("dune/grid/uggrid.hh", filetag="driver")
             gridt = "Dune::ALUGrid<{}, {}, Dune::simplex, Dune::conforming>".format(dim, dim)
             include_file("dune/alugrid/grid.hh", filetag="driver")
         else: