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 {