Skip to content

Commit af3e9b9

Browse files
author
Nikita Grover
committed
Remove unused _make_Row import and update CHANGES.md
1 parent e587f05 commit af3e9b9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@
7474

7575
* Support configuring Firestore database on ReadFn transforms (Java) ([#36904](https://github.com/apache/beam/issues/36904)).
7676

77-
* (Python) Moved `Row` to `apache_beam.typehints.row` to avoid import cycles and improve module organization. ([#35095](https://github.com/apache/beam/issues/35095))
77+
* Moved `Row` to `apache_beam.typehints.row` to avoid import cycles and improve module organization. Kept a compatibility alias in `pvalue.py` (Python) ([#35095](https://github.com/apache/beam/issues/35095)).
78+
7879

7980

8081
## Breaking Changes

sdks/python/apache_beam/pvalue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from apache_beam.portability import common_urns
4545
from apache_beam.portability import python_urns
4646
from apache_beam.portability.api import beam_runner_api_pb2
47-
from apache_beam.typehints.row import Row, _make_Row
47+
from apache_beam.typehints.row import Row
4848

4949
if TYPE_CHECKING:
5050
from apache_beam.pipeline import AppliedPTransform

0 commit comments

Comments
 (0)