Skip to content

Commit 1fe61c4

Browse files
committed
Ruff check, membership
1 parent 62575bc commit 1fe61c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
csrf = CSRFProtect(app)
1212

1313
# WEBSITE_HOSTNAME exists only in production environment
14-
if not 'WEBSITE_HOSTNAME' in os.environ:
14+
if 'WEBSITE_HOSTNAME' not in os.environ:
1515
# local development, where we'll use environment variables
1616
print("Loading config.development and environment variables from .env file.")
1717
app.config.from_object('azureproject.development')

0 commit comments

Comments
 (0)