diff pytouhou/menu.py @ 615:d1f0bb0b7a17

Don’t inherit explicitely from object, we are not on Python 2.7 anymore. :)
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Mar 2015 21:40:51 +0100
parents 7f113f15300b
children
line wrap: on
line diff
--- a/pytouhou/menu.py
+++ b/pytouhou/menu.py
@@ -24,7 +24,7 @@ import re
 GL_VERSION_REGEX = re.compile(r'^\d\.\d$')
 
 
-class Handler(object):
+class Handler:
     def __init__(self, config, args):
         self.config = config
         self.args = args