Skip to content

Commit

Permalink
Added imports to init file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Noman Musleh committed Dec 13, 2021
1 parent 4f96915 commit 31b8b76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repo_url: https://github.com/spotware/openApiPy
edit_uri: ""

# Copyright
copyright: Copyright © 2020 Spotware
copyright: Copyright © 2021 Spotware

# Configuration
theme:
Expand All @@ -27,7 +27,7 @@ extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/spotware
name: spotware on GitHub
name: Spotware on GitHub

# Page tree
nav:
Expand Down
7 changes: 2 additions & 5 deletions samples/ConsoleSample/ConsoleSample.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
#!/usr/bin/env python

from spotware_open_api.client import Client
from spotware_open_api.auth import Auth
from spotware_open_api.protobuf import Protobuf
from spotware_open_api.tcpProtocol import TcpProtocol
from spotware_open_api.messages.OpenApiCommonModelMessages_pb2 import *
from spotware_open_api import Client, Protobuf, TcpProtocol, Auth
from spotware_open_api.messages.OpenApiCommonMessages_pb2 import *
from spotware_open_api.messages.OpenApiCommonMessages_pb2 import *
from spotware_open_api.messages.OpenApiMessages_pb2 import *
from spotware_open_api.messages.OpenApiModelMessages_pb2 import *
Expand Down
6 changes: 4 additions & 2 deletions spotware_open_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Top-level package for Spotware OpenApiPy."""

from .client import Client
from .protobuf import Protobuf
from .tcpProtocol import TcpProtocol
from .auth import Auth
__author__ = """Spotware"""
__email__ = 'connect@spotware.com'
__version__ = '1.0.0'

0 comments on commit 31b8b76

Please sign in to comment.