From aae8125c7fffa3827b500daa25af89d4f0e35b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=86=8A=E5=87=AF?= Date: Thu, 29 Aug 2024 18:41:06 +0800 Subject: [PATCH] fix(core): foramt code --- .../screen_capturer_linux/lib/src/screen_capturer_linux.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/screen_capturer_linux/lib/src/screen_capturer_linux.dart b/packages/screen_capturer_linux/lib/src/screen_capturer_linux.dart index 74de4ca..7f4e808 100644 --- a/packages/screen_capturer_linux/lib/src/screen_capturer_linux.dart +++ b/packages/screen_capturer_linux/lib/src/screen_capturer_linux.dart @@ -32,7 +32,8 @@ class ScreenCapturerLinux extends MethodChannelScreenCapturer { bool get isDeepinDesktop { if (_isDeepinDesktop == null) { try { - final result = ShellExecutor.global.execSync('deepin-screen-recorder', ['-v']); + final result = + ShellExecutor.global.execSync('deepin-screen-recorder', ['-v']); _isDeepinDesktop = result.exitCode == 0; } catch (_) { _isDeepinDesktop = false;