There is often something like this: ``` if DRQUEUE_OS in ["Windows", "Win32"]: ``` -> https://github.com/kaazoo/DrQueueIPython/search?utf8=%E2%9C%93&q=windows TODO: Just change to: ``` if sys.platform.startswith('win'): ``` or maybe: ``` IS_WIN = sys.platform.startswith('win') if IS_WIN: ```