Skip to content

Commit cc07470

Browse files
tinyboxvkwill-v-pi
andauthored
Update src/utils/macOSUtils.mts
Fix line length linting error Co-authored-by: will-v-pi <[email protected]>
1 parent 20c624f commit cc07470

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utils/macOSUtils.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ export default class MacOSPythonPkgExtractor {
7272
try {
7373
execSync(command);
7474
} catch (error) {
75-
const message = error instanceof Error ? error.message : (error as string);
75+
const message =
76+
error instanceof Error ? error.message : (error as string);
7677
this._logger.error(
7778
`Error executing command: ${command} Error: ${message}`
7879
);

0 commit comments

Comments
 (0)