Skip to content

Commit

Permalink
fix: consistency fix from PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Oct 6, 2023
1 parent 47d3822 commit 416f0f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openedx_tagging/core/tagging/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_taxonomy(
name: str,
description: str | None = None,
enabled=True,
allow_multiple=False,
allow_multiple=True,
allow_free_text=False,
taxonomy_class: type[Taxonomy] | None = None,
) -> Taxonomy:
Expand Down
2 changes: 1 addition & 1 deletion openedx_tagging/core/tagging/rest_api/v1/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class TaxonomyView(ModelViewSet):
* enabled (optional): Only enabled taxonomies will be shown to authors
(default: true).
* allow_multiple (optional): Indicates that multiple tags from this
taxonomy may be added to an object (default: False).
taxonomy may be added to an object (default: True).
* allow_free_text (optional): Indicates that tags in this taxonomy need
not be predefined; authors may enter their own tag values (default:
False).
Expand Down

0 comments on commit 416f0f5

Please sign in to comment.