I apparently used to have a crappy sense of style. Let's fix that.
[invirt/packages/python-routefs.git] / routefs / examples / dictexfs.py
index 5533f04..5402e7d 100755 (executable)
@@ -1,10 +1,13 @@
 #!/usr/bin/python
 
+
 import routefs
 
+
 class DictExFS(routefs.DictFS):
     files = dict(Hello='World',
                  Directory=dict(a='a', b='b', c=routefs.Symlink('a')))
 
+
 if __name__ == '__main__':
     routefs.main(DictExFS)