File tree Expand file tree Collapse file tree 11 files changed +11
-0
lines changed Expand file tree Collapse file tree 11 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 22
33https://www.sphinx-doc.org/en/master/usage/configuration.html
44"""
5+
56from repl_python_wakatime import __version__ as version # type: ignore
67from repl_python_wakatime ._metainfo import ( # type: ignore
78 author ,
Original file line number Diff line number Diff line change 11r"""Provide ``__version__`` for
22`importlib.metadata.version() <https://docs.python.org/3/library/importlib.metadata.html#distribution-versions>`_.
33"""
4+
45try :
56 from ._version import __version__ , __version_tuple__ # type: ignore
67except ImportError : # for setuptools-generate
Original file line number Diff line number Diff line change 55<https://gitlab.com/code-stats/code-stats-vim/-/blob/master/pythonx/codestats.py>
66`_.
77"""
8+
89import json
910import logging
1011import threading
Original file line number Diff line number Diff line change 33
44Refer `create-plugin <https://wakatime.com/help/creating-plugin>`_.
55"""
6+
67import os
78from subprocess import Popen # nosec: B404
89from typing import Any , Callable
Original file line number Diff line number Diff line change 11"""ipython
22==========
33"""
4+
45from typing import Any , Callable
56
67from IPython .terminal .interactiveshell import TerminalInteractiveShell
Original file line number Diff line number Diff line change 11"""ptpython
22===========
33"""
4+
45from typing import Any , Callable
56
67from prompt_toolkit .formatted_text import AnyFormattedText
Original file line number Diff line number Diff line change 11"""python
22=========
33"""
4+
45import sys
56from typing import Any , Callable
67
Original file line number Diff line number Diff line change 11"""API
22======
33"""
4+
45import logging
56
67import keyring
Original file line number Diff line number Diff line change 11"""Project
22==========
33"""
4+
45import os
56from typing import Callable
67
Original file line number Diff line number Diff line change 11r"""Test API
22============
33"""
4+
45import pytest
56
67from repl_python_wakatime .hooks .codestats import CodeStats
You can’t perform that action at this time.
0 commit comments