Skip to content

Commit 6097a08

Browse files
author
RJ Santana
authored
Merge pull request #22 from NarrativeScience/fix-recursion-issue
Fix recursion issue
2 parents df2c564 + 6ff5524 commit 6097a08

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ https://www.stitchdata.com/docs/developers/stitch-connect/api
77
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
88

99
- API version: 0.4.1
10-
- Package version: 0.6.1
10+
- Package version: 0.6.2
1111
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1212

1313
Table of Contents:
@@ -150,6 +150,6 @@ npx openapi-generator generate \
150150
--package-name stitch_connect_client \
151151
--git-user-id NarrativeScience \
152152
--git-repo-id stitch-connect-python \
153-
-p packageVersion=0.6.1 \
153+
-p packageVersion=0.6.2 \
154154
-t templates
155155
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import find_packages, setup # noqa: H301
1414

1515
NAME = "stitch-connect-client"
16-
VERSION = "0.6.1"
16+
VERSION = "0.6.2"
1717
# To install the library, run the following
1818
#
1919
# python setup.py install

stitch_connect_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@
8888
from stitch_connect_client.models.streams_update_list import StreamsUpdateList
8989
from stitch_connect_client.models.update_source_body import UpdateSourceBody
9090

91-
__version__ = "0.6.1"
91+
__version__ = "0.6.2"

stitch_connect_client/models/create_source_body.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ def __init__(
6262
local_vars_configuration = Configuration()
6363
self.local_vars_configuration = local_vars_configuration
6464

65+
self._destination_id = None
6566
self._display_name = None
6667
self._type = None
6768
self._name = None
6869
self._properties = None
6970
self.discriminator = None
70-
self.destination_id = None
7171

72+
self.destination_id = destination_id
7273
self.display_name = display_name
7374
self.type = type
7475
if name is not None:
@@ -187,7 +188,7 @@ def destination_id(self):
187188
:return: The destination_id of this CreateSourceBody. # noqa: E501
188189
:rtype: integer
189190
"""
190-
return self.destination_id
191+
return self._destination_id
191192

192193
@properties.setter
193194
def destination_id(self, destination_id):
@@ -198,7 +199,7 @@ def destination_id(self, destination_id):
198199
:type: integer
199200
"""
200201

201-
self.destination_id = destination_id
202+
self._destination_id = destination_id
202203

203204
def to_dict(self):
204205
"""Returns the model properties as a dict"""

0 commit comments

Comments
 (0)