Skip to content

Commit fe3cb93

Browse files
committed
docs: translate comments
1 parent a52595b commit fe3cb93

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "hario-core"
7-
version = "0.3.1"
7+
version = "0.4.0"
88
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
99
authors = [{name = "Vasiliy Pikulev", email = "pikulev.vasiliy@gmail.com"}]
1010
readme = "README.md"
@@ -107,7 +107,7 @@ convention = "google"
107107

108108
[tool.poetry]
109109
name = "hario-core"
110-
version = "0.3.1"
110+
version = "0.4.0"
111111
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
112112
authors = ["Vasiliy Pikulev <pikulev.vasiliy@gmail.com>"]
113113
readme = "README.md"

src/hario_core/transform/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Pipeline(Processor):
3838
Defaults to an empty sequence.
3939
config: PipelineConfig
4040
Configuration object with batch_size, processing_strategy, max_workers.
41-
Если не передан, используется DEFAULT_PIPELINE_CONFIG.
41+
If not provided, uses DEFAULT_PIPELINE_CONFIG.
4242
"""
4343

4444
def __init__(

tests/samples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import orjson
66

7-
# Общий массив pages для обоих сэмплов
7+
# Common pages for both samples
88
PAGES: List[Dict[str, Any]] = [
99
{
1010
"startedDateTime": "2025-06-05T19:27:31.869Z",
@@ -26,7 +26,7 @@
2626
},
2727
]
2828

29-
# Реальный DevTools Chrome HAR (с _initiator, _resourceType и др.)
29+
# Real Chrome DevTools HAR (with _initiator, _resourceType, etc.)
3030
CHROME_DEVTOOLS_HAR: Dict[str, Any] = {
3131
"log": {
3232
"version": "1.2",

0 commit comments

Comments
 (0)