mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Remove implicit string concatenation
This commit is contained in:
parent
99dbf6b8c3
commit
e728196814
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ def prompt_user_for_choice(scene_classes):
|
||||||
name_to_class[name] = scene_class
|
name_to_class[name] = scene_class
|
||||||
try:
|
try:
|
||||||
user_input = input(
|
user_input = input(
|
||||||
"\nThat module has multiple scenes, "
|
"\nThat module has multiple scenes, " + \
|
||||||
"which ones would you like to render?"
|
"which ones would you like to render?" + \
|
||||||
"\nScene Name or Number: "
|
"\nScene Name or Number: "
|
||||||
)
|
)
|
||||||
return [
|
return [
|
||||||
|
|
Loading…
Add table
Reference in a new issue