Skip to content

Commit

Permalink
Fix __all__ in client/__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
aversey committed Jul 17, 2024
1 parent 1a300fe commit ff1fd7c
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/hopsworks/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,26 @@
#

from hopsworks_common.client import (
auth,
base,
exceptions,
external,
get_instance,
hopsworks,
init,
online_store_rest_client,
stop,
)


__all__ = [
auth,
base,
exceptions,
external,
get_instance,
hopsworks,
init,
online_store_rest_client,
stop,
]
28 changes: 28 additions & 0 deletions python/hopsworks/client/online_store_rest_client.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#
# Copyright 2024 Hopsworks AB
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

from hopsworks_common.client.online_store_rest_client import (
OnlineStoreRestClientSingleton,
get_instance,
init_or_reset_online_store_rest_client,
)


__all__ = [
OnlineStoreRestClientSingleton,
get_instance,
init_or_reset_online_store_rest_client,
]
12 changes: 12 additions & 0 deletions python/hsfs/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,26 @@
#

from hopsworks_common.client import (
auth,
base,
exceptions,
external,
get_instance,
hopsworks,
init,
online_store_rest_client,
stop,
)


__all__ = [
auth,
base,
exceptions,
external,
get_instance,
hopsworks,
init,
online_store_rest_client,
stop,
]

0 comments on commit ff1fd7c

Please sign in to comment.