Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit e522bf8

Browse files
fix: pass snapshot_millis to the main function (#8)
Co-authored-by: Tim Swast <swast@google.com>
1 parent 2ea5ac4 commit e522bf8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samples/quickstart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ def main(project_id="your-project-id", snapshot_millis=0):
9797
parser.add_argument("project_id")
9898
parser.add_argument("--snapshot_millis", default=0, type=int)
9999
args = parser.parse_args()
100-
main(project_id=args.project_id)
100+
main(project_id=args.project_id, snapshot_millis=args.snapshot_millis)

0 commit comments

Comments
 (0)