Skip to content

Commit 5cbd2f8

Browse files
Merge pull request #24 from TheDragonCode/code-style-hh53gor
The code style has been fixed
2 parents af159a0 + 6d5d242 commit 5cbd2f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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)