Skip to content

Commit

Permalink
Moved AssistFString to core.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Sep 14, 2024
1 parent ce01b44 commit 1979ce8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions plugins/org.python.pydev.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Require-Bundle: org.junit;bundle-version="4.0.0";resolution:=optional,
Bundle-ActivationPolicy: lazy
Export-Package: org.python.copiedfromeclipsesrc,
org.python.pydev.core,
org.python.pydev.core.assist_fstring,
org.python.pydev.core.autoedit,
org.python.pydev.core.cache,
org.python.pydev.core.concurrency,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.python.pydev.editor.correctionassist.heuristics;
package org.python.pydev.core.assist_fstring;

import java.io.File;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
import org.python.pydev.core.IPySyntaxHighlightingAndCodeCompletionEditor;
import org.python.pydev.core.IPythonNature;
import org.python.pydev.core.MisconfigurationException;
import org.python.pydev.core.assist_fstring.AssistFString;
import org.python.pydev.core.docstrings.AssistDocString;
import org.python.pydev.core.docutils.PySelection;
import org.python.pydev.core.log.Log;
import org.python.pydev.editor.PyEdit;
import org.python.pydev.editor.correctionassist.heuristics.AssistAssign;
import org.python.pydev.editor.correctionassist.heuristics.AssistFString;
import org.python.pydev.editor.correctionassist.heuristics.AssistImport;
import org.python.pydev.editor.correctionassist.heuristics.AssistImportToLocal;
import org.python.pydev.editor.correctionassist.heuristics.AssistPercentToFormat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.Document;
import org.python.pydev.core.MisconfigurationException;
import org.python.pydev.core.assist_fstring.AssistFString;
import org.python.pydev.core.docutils.PySelection;
import org.python.pydev.core.proposals.CompletionProposalFactory;
import org.python.pydev.editor.codecompletion.proposals.DefaultCompletionProposalFactory;
Expand Down

0 comments on commit 1979ce8

Please sign in to comment.