We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32abc75 commit 8184af4Copy full SHA for 8184af4
functions/tips/main.py
@@ -63,7 +63,6 @@ def heavy_computation():
63
return reduce(lambda x, t: t * x, numbers)
64
65
66
-# [START functions_tips_global_scope]
67
# [START run_tips_global_scope]
68
# Global (instance-wide) scope
69
# This computation runs at instance cold-start
@@ -85,7 +84,6 @@ def scope_demo(request):
85
84
return 'Per instance: {}, per function: {}'.format(
86
instance_var, function_var)
87
# [END run_tips_global_scope]
88
-# [END functions_tips_global_scope]
89
90
91
# [START functions_tips_lazy_globals]
0 commit comments