From 52aef91f8d25223d9dbdb4aebd94ba8eea2101f3 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 11 Jan 2022 07:04:14 -0500 Subject: [PATCH] chore(python): fix undefined name 'glob' in samples noxfile (#1324) PR https://github.com/googleapis/synthtool/pull/1321 added `glob.glob` but the import statement was missing. --- synthtool/gcp/templates/python_samples/noxfile.py.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/synthtool/gcp/templates/python_samples/noxfile.py.j2 b/synthtool/gcp/templates/python_samples/noxfile.py.j2 index 49e302288..3bbef5d54 100644 --- a/synthtool/gcp/templates/python_samples/noxfile.py.j2 +++ b/synthtool/gcp/templates/python_samples/noxfile.py.j2 @@ -14,6 +14,7 @@ from __future__ import print_function +import glob import os from pathlib import Path import sys