Skip to content

Commit

Permalink
fix(python): wrong release versioning on configuration.py
Browse files Browse the repository at this point in the history
  • Loading branch information
devopsarr[bot] committed Feb 15, 2024
1 parent d4033fe commit 6b70b2c
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 6b70b2c

Please sign in to comment.