You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Modules/Friends/Create_Friend_Folder/__init__.py
+15-15
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ def __init__(self):
14
14
"States": {
15
15
"Add Social Networks": False,
16
16
"Add more Social Networks": True,
17
-
"Add Social Network to existing Friend": False,
17
+
"Add Social Network to existing friend folder": False,
18
18
"Friend already existed": False
19
19
}
20
20
}
@@ -23,18 +23,18 @@ def __init__(self):
23
23
print()
24
24
print(self.large_bar)
25
25
26
-
# Ask the user if they want to add Social Networks to an existing Friend folder
27
-
self.dictionary["States"]["Add Social Network to existing Friend"] =self.Input.Yes_Or_No(self.language_texts["add_social_network_to_friend_folder"])
26
+
# Ask the user if they want to add Social Networks to an existing friend folder
27
+
self.dictionary["States"]["Add Social Network to existing friend folder"] =self.Input.Yes_Or_No(self.language_texts["add_social_network_to_friend_folder"])
28
28
29
-
# If the user wants to add Social Networks to an existing Friend, select a Friend to do that
30
-
ifself.dictionary["States"]["Add Social Network to existing Friend"] ==True:
29
+
# If the user wants to add Social Networks to an existing friend folder, select a Friend to do that
30
+
ifself.dictionary["States"]["Add Social Network to existing friend folder"] ==True:
31
31
print()
32
32
print(self.large_bar)
33
33
34
34
self.Select_Friend()
35
35
36
36
# If not, type the information of the new Friend to be added
37
-
ifself.dictionary["States"]["Add Social Network to existing Friend"] ==False:
37
+
ifself.dictionary["States"]["Add Social Network to existing friend folder"] ==False:
38
38
self.Type_Friend_Information()
39
39
40
40
# Add the Social Networks (typing their information)
@@ -47,15 +47,15 @@ def __init__(self):
47
47
self.Write_To_Files()
48
48
49
49
# Show the information about the newly added Friend
50
-
# Or the new Social Networks added to an existing friend
50
+
# Or the new Social Networks added to an existing friend folder
51
51
self.Show_Information()
52
52
53
53
# Run the root class to update the folders and files of all Friends
54
54
# And also the "Friends.json" file
55
55
super().__init__()
56
56
57
57
defType_Friend_Information(self):
58
-
# Show a separator and the "Please type friend information" text
58
+
# Show a separator and the "Please type the information of the Friend" text
0 commit comments