jason810496 commented on code in PR #58080:
URL: https://github.com/apache/airflow/pull/58080#discussion_r2529664197


##########
dev/breeze/src/airflow_breeze/commands/developer_commands.py:
##########
@@ -129,6 +130,18 @@
 CELERY_INTEGRATION = "celery"
 
 
+def is_wsl() -> bool:
+    """Detect if we are running inside WSL."""
+    if platform.system().lower() != "Linux":

Review Comment:
   It seems to be `linux` instead of `Linux` ?
   ```suggestion
       if platform.system().lower() != "linux":
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to