ashb commented on a change in pull request #16110:
URL: https://github.com/apache/airflow/pull/16110#discussion_r640502002
##########
File path: airflow/utils/platform_utils.py
##########
@@ -0,0 +1,16 @@
+import platform
+
+def is_windows() -> bool:
+ """
+ Returns true if executing system is Windows
+ """
+ return platform.system() == 'Windows'
Review comment:
We don't need a function for this either.
```suggestion
IS_WINDOWS = platform.system() == 'Windows'
"""True if operating system is Windows"""```
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]