Skip to content

Commit f6124e8

Browse files
committed
Update products.py
1 parent d6c9bb4 commit f6124e8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

python/products.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
apimServiceName = os.getenv('apimServiceName')
1414
tenantId = os.getenv('tenantId')
1515
subscriptionId = os.getenv('subscriptionId')
16-
product_id = os.getenv('PRODUCT_ID')
17-
product_name = os.getenv('PRODUCT_NAME')
16+
17+
# Define product_id and product_name directly in the code
18+
product_id = 'GithubProduct'
19+
product_name = 'Github Product'
1820

1921
# Print the environment variables to debug
2022
print(f"clientId: {clientId}")

0 commit comments

Comments
 (0)