From a97eb171761c5f20ae2c4c940b35c3ce1407162d Mon Sep 17 00:00:00 2001 From: Gabriel Rufino Date: Mon, 30 Dec 2024 22:47:30 -0300 Subject: [PATCH] ci: lint fix --- src/Graph/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Graph/index.ts b/src/Graph/index.ts index af596f9..5783a35 100644 --- a/src/Graph/index.ts +++ b/src/Graph/index.ts @@ -6,7 +6,7 @@ import IGraphOptions from './IGraphOptions'; import Dictionary from '../Dictionary'; import Queue from '../Queue'; import Set from '../Set'; -import { Edge } from './Edge'; +import {Edge} from './Edge'; export default class Graph implements IGraph { private readonly _isDirected: boolean;