You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current Git main version triggers the following error in my setup:
Traceback (most recent call last):
File "/mnt/c/Users/Ondra/Werke/reffix/reffix/./reffix.py", line 28, in <module>
from . import utils as ut
ImportError: attempted relative import with no known parent package
This is what fixes it for me:
--- a/reffix/reffix.py
+++ b/reffix/reffix.py
@@ -25,7 +25,7 @@ import bibtexparser
import re
import pprint
-from . import utils as ut
+import utils as ut
from bibtexparser.bparser import BibTexParser
import bibtexparser.customization as bc
Not sure if I'm doing something wrong?
The text was updated successfully, but these errors were encountered:
The current Git main version triggers the following error in my setup:
This is what fixes it for me:
Not sure if I'm doing something wrong?
The text was updated successfully, but these errors were encountered: