We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac9642 commit d044537Copy full SHA for d044537
plerr/__main__.py
@@ -1,6 +1,6 @@
1
"""plerr entrypoint."""
2
3
-from plerr import cli
+from . import cli
4
5
if __name__ == '__main__':
6
cli.main()
plerr/cli.py
@@ -8,7 +8,7 @@
8
from pygments.lexers import MarkdownLexer
9
from pygments.formatters import TerminalFormatter
10
11
-from plerr import __version__
+from . import __version__
12
13
14
def main():
0 commit comments