Skip to content

Commit

Permalink
Merge pull request #61 from devopsarr/feature/code-generation
Browse files Browse the repository at this point in the history
fix(python): wrong release versioning on configuration.py
  • Loading branch information
devopsarr[bot] authored Feb 15, 2024
2 parents d4033fe + 6b70b2c commit 7e74131
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions sonarr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ def auth_settings(self):
}
return auth

# x-release-please-start-version$
def to_debug_report(self):
"""Gets the essential information for debugging.
Expand All @@ -409,10 +408,9 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v4.0.1.929\n"\
"SDK Package Version: 0.10.0".\
format(env=sys.platform, pyversion=sys.version)
"SDK Package Version: {v}".\
format(env=sys.platform, pyversion=sys.version, v="0.10.0") # x-release-please-version

# x-release-please-end$
def get_host_settings(self):
"""Gets an array of host settings
Expand Down

0 comments on commit 7e74131

Please sign in to comment.