Spaces:
Build error
Build error
Ronio Jerico Roque commited on
Commit ·
43bd51a
1
Parent(s): 4394238
Refactor client name and website formatting in ClientSummary class
Browse files
classes/client_summary.py
CHANGED
|
@@ -31,8 +31,8 @@ class CientSummary:
|
|
| 31 |
client_website = ""
|
| 32 |
#
|
| 33 |
client_summary = f"Client Summary: {self.client_summary}\n"
|
| 34 |
-
client_name = f"
|
| 35 |
-
client_website = f"
|
| 36 |
|
| 37 |
debug_client_summary = {'data_field' : 'Client Summary', 'result': client_summary}
|
| 38 |
debug_client_name = {'data_field' : 'Client Name', 'result': client_name}
|
|
|
|
| 31 |
client_website = ""
|
| 32 |
#
|
| 33 |
client_summary = f"Client Summary: {self.client_summary}\n"
|
| 34 |
+
client_name = f"{self.name}\n"
|
| 35 |
+
client_website = f"{self.website}\n"
|
| 36 |
|
| 37 |
debug_client_summary = {'data_field' : 'Client Summary', 'result': client_summary}
|
| 38 |
debug_client_name = {'data_field' : 'Client Name', 'result': client_name}
|