fix some awxkit flake8 failures

This commit is contained in:
Ryan Petrello 2019-09-12 08:08:52 -04:00
parent eba69142f1
commit 662033db44
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -1,5 +1,4 @@
from awxkit.api.resources import resources
from . import base
from . import page
@ -8,4 +7,5 @@ class Subscriptions(page.Page):
def get_possible_licenses(self, **kwargs):
return self.post(json=kwargs).json
page.register_page(resources.subscriptions, Subscriptions)