diff --git a/docs/framework/authentication.mdx b/docs/framework/authentication.mdx index f7f6d4062..472684535 100644 --- a/docs/framework/authentication.mdx +++ b/docs/framework/authentication.mdx @@ -27,8 +27,8 @@ import writer.serve import writer.auth auth = writer.auth.BasicAuth( - login=os.get('LOGIN'), - password=os.get('PASSWORD'), + login=os.getenv('LOGIN'), + password=os.getenv('PASSWORD'), ) writer.serve.register_auth(auth)