/ mlflow / utils / os.py
os.py
 1  import os
 2  
 3  
 4  def is_windows():
 5      """
 6      Returns true if the local system/OS name is Windows.
 7  
 8      Returns:
 9          True if the local system/OS name is Windows.
10  
11      """
12      return os.name == "nt"