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
|
||||
try:
|
||||
user_input = input(
|
||||
"\nThat module has multiple scenes, "
|
||||
"which ones would you like to render?"
|
||||
"\nThat module has multiple scenes, " + \
|
||||
"which ones would you like to render?" + \
|
||||
"\nScene Name or Number: "
|
||||
)
|
||||
return [
|
||||
|
|
Loading…
Add table
Reference in a new issue