-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff_errors.txt
More file actions
23 lines (21 loc) · 1.83 KB
/
Copy pathruff_errors.txt
File metadata and controls
23 lines (21 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
E501 Line too long (102 > 100)
--> src\config\settings.py:36:100
|
34 | REVEAL_MESSAGE = os.getenv(
35 | "REVEAL_MESSAGE",
36 | "A rose for my most beautiful flower. I love you more than words can say. Happy Rose Day! 🌹",
| ^^
37 | )
38 | MARRIAGE_MESSAGE_1 = os.getenv("MARRIAGE_MESSAGE_1", "Happy Rose Day, my beautiful spouse.")
|
E501 Line too long (103 > 100)
--> src\config\settings.py:41:101
|
39 | MARRIAGE_MESSAGE_2 = os.getenv(
40 | "MARRIAGE_MESSAGE_2",
41 | "Thank you for making every day feel like a dream. May our love bloom forever like this rose.",
| ^^^
42 | )
43 | FINAL_MESSAGE = os.getenv(
|
Found 2 errors.