cachestat: use raw strings to escape \d
[yardstick.git] / yardstick / benchmark / scenarios / dummy / dummy.py
index de6742c..59d1775 100644 (file)
@@ -6,6 +6,7 @@
 # which accompanies this distribution, and is available at
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
+from __future__ import absolute_import
 import logging
 
 from yardstick.benchmark.scenarios import base
@@ -24,7 +25,7 @@ class Dummy(base.Scenario):
         self.setup_done = False
 
     def setup(self):
-        '''scenario setup'''
+        """scenario setup"""
         self.setup_done = True
 
     def run(self, result):