Skip to content

Commit

Permalink
refactor: Fix relative imports so they work in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
claremacrae committed May 17, 2024
1 parent 512f018 commit ecdf1d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Suggestor/EditorSuggestorPopup.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { App, Editor, EditorSuggest, TFile } from 'obsidian';
import type { EditorPosition, EditorSuggestContext, EditorSuggestTriggerInfo } from 'obsidian';
import type TasksPlugin from 'main';
import { ensureTaskHasId } from 'Task/TaskDependency';
import { replaceTaskWithTasks } from 'Obsidian/File';
import { ensureTaskHasId } from '../Task/TaskDependency';
import { replaceTaskWithTasks } from '../Obsidian/File';
import { type Settings, getUserSelectedTaskFormat } from '../Config/Settings';
import { canSuggestForLine } from './Suggestor';
import type { SuggestInfo } from '.';
Expand Down

0 comments on commit ecdf1d5

Please sign in to comment.