Modify Makefile. Remove an unnecessary validation about n_prompt.

This commit is contained in:
hodanov
2024-11-04 09:02:38 +09:00
parent 8a2a831c80
commit fcc8ec0f91
2 changed files with 4 additions and 6 deletions
-4
View File
@@ -39,10 +39,6 @@ class Prompts:
msg = "prompt should not be empty."
raise ValueError(msg)
if n_prompt == "":
msg = "n_prompt should not be empty."
raise ValueError(msg)
if height <= 0:
msg = "height should be positive."
raise ValueError(msg)