Skip to content

Commit 9ba21c3

Browse files
committed
Autoformat
1 parent c7eea24 commit 9ba21c3

2 files changed

Lines changed: 4 additions & 17 deletions

File tree

src/analyze.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ import * as configUtils from "./config-utils";
1717
import { BuildMode } from "./config-utils";
1818
import { addDiagnostic, makeDiagnostic } from "./diagnostics";
1919
import { EnvVar } from "./environment";
20-
import {
21-
FeatureEnablement,
22-
Feature,
23-
} from "./feature-flags";
20+
import { FeatureEnablement, Feature } from "./feature-flags";
2421
import { isScannedLanguage, Language } from "./languages";
2522
import { Logger } from "./logging";
2623
import { DatabaseCreationTimings, EventReport } from "./status-report";
@@ -120,9 +117,7 @@ export interface QueriesStatusReport {
120117
event_reports?: EventReport[];
121118
}
122119

123-
async function setupPythonExtractor(
124-
logger: Logger,
125-
) {
120+
async function setupPythonExtractor(logger: Logger) {
126121
const codeqlPython = process.env["CODEQL_PYTHON"];
127122
if (codeqlPython === undefined || codeqlPython.length === 0) {
128123
// If CODEQL_PYTHON is not set, no dependencies were installed, so we don't need to do anything

src/init-action.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,8 @@ import { getGitHubVersion } from "./api-client";
1616
import { CodeQL } from "./codeql";
1717
import * as configUtils from "./config-utils";
1818
import { EnvVar } from "./environment";
19-
import {
20-
Feature,
21-
Features,
22-
} from "./feature-flags";
23-
import {
24-
checkInstallPython311,
25-
initCodeQL,
26-
initConfig,
27-
runInit,
28-
} from "./init";
19+
import { Feature, Features } from "./feature-flags";
20+
import { checkInstallPython311, initCodeQL, initConfig, runInit } from "./init";
2921
import { Language } from "./languages";
3022
import { getActionsLogger, Logger } from "./logging";
3123
import { parseRepositoryNwo } from "./repository";

0 commit comments

Comments
 (0)