Skip to content

Commit 6b81ad8

Browse files
committed
Make print message consistent with variable name
1 parent 204bc7c commit 6b81ad8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source-code/enviroment-variables/dotenv/dotenv_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def main():
1717
secret_key = os.getenv('MY_SECRET')
1818

1919
if secret_key:
20-
print(f'MY_SECRET_KEY: {secret_key}')
20+
print(f'MY_SECRET: {secret_key}')
2121
else:
2222
print('MY_SECRET not found in environment variables.')
2323

0 commit comments

Comments
 (0)