mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
add classnames to awips/dataaccess/__init__.py
This commit is contained in:
parent
0cad20c636
commit
027d93ac70
1 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue