Skip to content

Commit f017a37

Browse files
committed
Fixed Comma making language profiles a set vs an int
1 parent 33c31ec commit f017a37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.1
1+
1.4.2

arrapi/apis/sonarr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _validate_add_options(self, root_folder, quality_profile, language_profile=N
3939
if not self._raw.v4:
4040
if not language_profile:
4141
raise Invalid("Language Profile Required")
42-
options["language_profile"] = self._validate_language_profile(language_profile),
42+
options["language_profile"] = self._validate_language_profile(language_profile)
4343
if tags:
4444
options["tags"] = self._validate_tags(tags)
4545
return options

0 commit comments

Comments
 (0)