Skip to content

Commit

Permalink
Resolve unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
kofalt committed Nov 11, 2016
1 parent c57dbb1 commit ae3e477
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion api/handlers/resolvehandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""

from .. import base
from .. import config
from ..resolver import Resolver

class ResolveHandler(base.RequestHandler):
Expand Down
6 changes: 1 addition & 5 deletions api/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""

from . import config
from . import util

class Node(object):

Expand Down Expand Up @@ -68,9 +67,6 @@ def _get_docs(table, label, match):
return results


class CollectionsLiteralNode(Node):
pass

class FileNode(Node):
@staticmethod
def get_children(parent):
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit ae3e477

Please sign in to comment.