From e95402731e501a0434dd6753b835ef3e2cc1fef2 Mon Sep 17 00:00:00 2001 From: Luan Date: Sat, 14 Dec 2024 12:35:55 -0300 Subject: [PATCH] chore: lint --- src/parser/classes/HowThisWasMadeSectionView.ts | 2 +- src/parser/classes/StructuredDescriptionContent.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser/classes/HowThisWasMadeSectionView.ts b/src/parser/classes/HowThisWasMadeSectionView.ts index 1981e74b..72f31524 100644 --- a/src/parser/classes/HowThisWasMadeSectionView.ts +++ b/src/parser/classes/HowThisWasMadeSectionView.ts @@ -1,6 +1,6 @@ import { type RawNode } from '../index.js'; import { YTNode } from '../helpers.js'; -import Text from "./misc/Text.js"; +import Text from './misc/Text.js'; export default class HowThisWasMadeSectionView extends YTNode { static type = 'HowThisWasMadeSectionView'; diff --git a/src/parser/classes/StructuredDescriptionContent.ts b/src/parser/classes/StructuredDescriptionContent.ts index 91be47a7..00e56d80 100644 --- a/src/parser/classes/StructuredDescriptionContent.ts +++ b/src/parser/classes/StructuredDescriptionContent.ts @@ -8,7 +8,7 @@ import VideoDescriptionMusicSection from './VideoDescriptionMusicSection.js'; import VideoDescriptionTranscriptSection from './VideoDescriptionTranscriptSection.js'; import VideoDescriptionCourseSection from './VideoDescriptionCourseSection.js'; import VideoAttributesSectionView from './VideoAttributesSectionView.js'; -import HowThisWasMadeSectionView from "./HowThisWasMadeSectionView.js"; +import HowThisWasMadeSectionView from './HowThisWasMadeSectionView.js'; import ReelShelf from './ReelShelf.js'; export default class StructuredDescriptionContent extends YTNode {