()
| 2 | |
| 3 | |
| 4 | def isDark(): |
| 5 | if 'wxMSW' in wx.PlatformInfo: |
| 6 | return False |
| 7 | try: |
| 8 | return wx.SystemSettings.GetAppearance().IsDark() |
| 9 | except (KeyboardInterrupt, SystemExit): |
| 10 | raise |
| 11 | except: |
| 12 | return False |
no outgoing calls
no test coverage detected