Skip to content

Commit 6d5d242

Browse files
andrey-helldargithub-actions[bot]
authored andcommitted
🦋 The code style has been fixed
1 parent af159a0 commit 6d5d242

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

‎src/utils/processes.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { promisify } from 'node:util'
2-
import { exec as nodeExec } from 'node:child_process'
1+
import { promisify } from "node:util";
2+
import { exec as nodeExec } from "node:child_process";
33

44
export const exec = async (command: string): Promise<string> => {
55
const execAsync = promisify(nodeExec);

‎src/utils/repository.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Config } from "../types/config";
22
import { randomizer } from "./randomizer";
33
import type { GitHub } from "@actions/github/lib/utils";
44
import type { RestEndpointMethodTypes } from "@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types";
5-
import { exec } from './processes'
5+
import { exec } from "./processes";
66

77
export class Repository {
88
private _config: Config;

0 commit comments

Comments
 (0)