Start of some game board stuff.
[naja.git] / naja / options.py
index cf5715dde1faa36d7dcf81628648458434c3b3fc..816d91ca3c29f87329a2b8f6b9428d899e851280 100644 (file)
@@ -1,15 +1,10 @@
 import optparse
 import os
 
+from naja.attrdict import AttrDict
 from naja.constants import DEFAULTS
 
 
-class AttrDict(dict):
-    '''A dict with attribute access'''
-    def __getattr__(self, attr):
-        return self[attr]
-
-
 options = AttrDict()