Skip to content

Commit 9167a2c

Browse files
committed
fix: update comments from Russian to English for better clarity in components and dependencies
1 parent 044545d commit 9167a2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app_manifest_cli/services/components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def add_component(manifest_path: str, payload_text: str, out_file):
66

7-
# Тут можно написать логику для Компонент
7+
# Here you can add logic for adding a component to the manifest
88

99
obj = json.loads(payload_text)
1010
if not obj.get("name"):

src/app_manifest_cli/services/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def add_dependency(manifest_path: str, payload_text: str, configuration: str, out_file):
55

6-
# Тут можно написать логику для депенденси
6+
# Here you can add logic for adding a dependency to the manifest
77

88
item = json.loads(payload_text)
99
with open(manifest_path, "r", encoding="utf-8") as f:

0 commit comments

Comments
 (0)