fix: remove unused execFileSync import (no-unused-vars ESLint)

This commit is contained in:
Pangerkumzuk Longkumer 2026-02-18 07:15:53 +05:30 committed by GitHub
parent d54124afad
commit 3d97985559
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@ const assert = require('assert');
const path = require('path');
const fs = require('fs');
const os = require('os');
const { spawnSync, execFileSync } = require('child_process');
const { spawnSync } = require('child_process');
const evaluateScript = path.join(__dirname, '..', '..', 'scripts', 'hooks', 'evaluate-session.js');