This is an automated email from the ASF dual-hosted git repository.
jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 4cd211b5ec2 Improve docstring for fire_interval (#33936)
4cd211b5ec2 is described below
commit 4cd211b5ec2a9b02e0803d55d72bac7a04e09fc3
Author: Danny McCormick <[email protected]>
AuthorDate: Tue Feb 11 10:50:23 2025 -0500
Improve docstring for fire_interval (#33936)
---
sdks/python/apache_beam/transforms/periodicsequence.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdks/python/apache_beam/transforms/periodicsequence.py
b/sdks/python/apache_beam/transforms/periodicsequence.py
index 613661b2295..d06651a9504 100644
--- a/sdks/python/apache_beam/transforms/periodicsequence.py
+++ b/sdks/python/apache_beam/transforms/periodicsequence.py
@@ -182,7 +182,7 @@ class PeriodicImpulse(PTransform):
'''
:param start_timestamp: Timestamp for first element.
:param stop_timestamp: Timestamp after which no elements will be output.
- :param fire_interval: Interval at which to output elements.
+ :param fire_interval: Interval in seconds at which to output elements.
:param apply_windowing: Whether each element should be assigned to
individual window. If false, all elements will reside in global window.
'''