Skip to content

Commit 849975e

Browse files
yt-msMidnighter
andcommitted
fix: string concatenation (PR feedback)
Co-authored-by: Moritz E. Beber <[email protected]>
1 parent 7998962 commit 849975e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/big_bank.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def create_big_bank_workspace():
174174
database = internet_banking_system.add_container(
175175
"Database",
176176
"Stores user registration information, hashed authentication credentials, "
177-
+ "access logs, etc.",
177+
"access logs, etc.",
178178
"Relational Database Schema",
179179
id="database",
180180
)
@@ -216,7 +216,7 @@ def create_big_bank_workspace():
216216
security_component = api_application.add_component(
217217
name="Security Component",
218218
description="Provides functionality related to signing in, changing passwords, "
219-
+ "etc.",
219+
"etc.",
220220
technology="Spring Bean",
221221
id="securityComponent",
222222
)
@@ -442,7 +442,7 @@ def create_big_bank_workspace():
442442
software_system=internet_banking_system,
443443
key="DevelopmentDeployment",
444444
description="An example development deployment scenario for the Internet "
445-
+ "Banking System.",
445+
"Banking System.",
446446
environment="Development",
447447
)
448448
development_deployment_view.add(developer_laptop)
@@ -452,7 +452,7 @@ def create_big_bank_workspace():
452452
software_system=internet_banking_system,
453453
key="LiveDeployment",
454454
description="An example live deployment scenario for the Internet Banking "
455-
+ "System.",
455+
"System.",
456456
environment="Live",
457457
)
458458
live_deployment_view += big_bank_data_center

0 commit comments

Comments
 (0)