Skip to content
Snippets Groups Projects
Commit ba0f2a2b authored by Nathaniel Kofalt's avatar Nathaniel Kofalt
Browse files

Resolve unused import

parent 8d0eb1f9
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@ API request handlers for the jobs module
"""
from .. import base
from .. import config
from ..resolver import Resolver
class ResolveHandler(base.RequestHandler):
......
......@@ -3,7 +3,6 @@ Resolve an ambiguous path through the data hierarchy.
"""
from . import config
from . import util
class Node(object):
......@@ -68,9 +67,6 @@ def _get_docs(table, label, match):
return results
class CollectionsLiteralNode(Node):
pass
class FileNode(Node):
@staticmethod
def get_children(parent):
......@@ -167,7 +163,7 @@ class Resolver(object):
"""
@staticmethod
def resolve(path, uid=None):
def resolve(path):
if not isinstance(path, list):
raise Exception("Path must be an array of strings")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment