Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
Fix issue in ResolveVisitor.visit_empty_schema
Browse files Browse the repository at this point in the history
Return EmptySchema object since NoneType was being returned.
  • Loading branch information
rightlag committed Aug 10, 2017
1 parent 1deef46 commit e3866ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aptos/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '1.0.1'
2 changes: 1 addition & 1 deletion aptos/visitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __init__(self, context):
self.context = context

def visit_empty_schema(self, schema, *args): # pragma: no cover
return
return schema

def visit_enumeration(self, enumeration, *args):
return self.visit_primitive(enumeration, *args)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='aptos',
version='1.0.0',
version='1.0.1',
url='https://github.com/pennsignals/aptos',
author='Jason Walsh',
author_email='jason.walsh@uphs.upenn.edu',
Expand Down

0 comments on commit e3866ec

Please sign in to comment.