From 027d93ac700fd185c25559d64f1b9e24ef1539d8 Mon Sep 17 00:00:00 2001 From: Michael James Date: Tue, 16 Oct 2018 22:01:18 -0600 Subject: [PATCH] add classnames to awips/dataaccess/__init__.py --- awips/dataaccess/__init__.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/awips/dataaccess/__init__.py b/awips/dataaccess/__init__.py index ceb43d5..14a7fbf 100644 --- a/awips/dataaccess/__init__.py +++ b/awips/dataaccess/__init__.py @@ -17,7 +17,15 @@ # # -__all__ = [] +__all__ = [ + 'IData', + 'IDataRequest', + 'IGeometryData', + 'IGridData', + 'IGeometryData', + 'INotificationFilter', + 'INotificationSubscriber' +] import abc from six import with_metaclass @@ -143,7 +151,6 @@ class IDataRequest(with_metaclass(abc.ABCMeta, object)): return - class IData(with_metaclass(abc.ABCMeta, object)): """ An IData representing data returned from the DataAccessLayer. @@ -204,7 +211,6 @@ class IData(with_metaclass(abc.ABCMeta, object)): return - class IGridData(IData): """ An IData representing grid data that is returned by the DataAccessLayer. @@ -252,7 +258,6 @@ class IGridData(IData): return - class IGeometryData(IData): """ An IData representing geometry data that is returned by the DataAccessLayer. @@ -354,6 +359,7 @@ class INotificationSubscriber(with_metaclass(abc.ABCMeta, object)): """Closes the notification subscriber""" pass + class INotificationFilter(with_metaclass(abc.ABCMeta, object)): """ Represents data required to filter a set of URIs and