prevent importing import_methods.py
diff --git a/xos/api/import_methods.py b/xos/api/import_methods.py
index 468c490..13502d4 100644
--- a/xos/api/import_methods.py
+++ b/xos/api/import_methods.py
@@ -32,7 +32,7 @@
     view_urls = []
     for fn in os.listdir(dirname):
         pathname = os.path.join(dirname,fn)
-        if os.path.isfile(pathname) and fn.endswith(".py") and (fn!="__init__.py"):
+        if os.path.isfile(pathname) and fn.endswith(".py") and (fn!="__init__.py") and (fn!="import_methods.py"):
             module = import_module_from_filename(dirname, fn)
             for classname in dir(module):
                 c = getattr(module, classname, None)