Python - Standard Library Usage
What issue arises from this code snippet if the environment variable
MAX_CONNECTIONS is not set?import os
max_conn = int(os.getenv('MAX_CONNECTIONS'))
print(max_conn)