File tree Expand file tree Collapse file tree 12 files changed +19
-8
lines changed Expand file tree Collapse file tree 12 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 22
22
- id : check-toml
23
23
- id : check-json
24
24
- repo : https://github.com/Lucas-C/pre-commit-hooks
25
- rev : v1.5.4
25
+ rev : v1.5.5
26
26
hooks :
27
27
- id : remove-crlf
28
28
- repo : https://github.com/codespell-project/codespell
@@ -46,11 +46,11 @@ repos:
46
46
hooks :
47
47
- id : check-mailmap
48
48
- repo : https://github.com/rhysd/actionlint
49
- rev : v1.6.26
49
+ rev : v1.6.27
50
50
hooks :
51
51
- id : actionlint
52
52
- repo : https://github.com/adrienverge/yamllint
53
- rev : v1.33.0
53
+ rev : v1.35.1
54
54
hooks :
55
55
- id : yamllint
56
56
- repo : https://github.com/executablebooks/mdformat
67
67
- mdformat-black
68
68
- mdformat-config
69
69
- repo : https://github.com/DavidAnson/markdownlint-cli2
70
- rev : v0.10.0
70
+ rev : v0.12.1
71
71
hooks :
72
72
- id : markdownlint-cli2
73
73
additional_dependencies :
@@ -78,11 +78,11 @@ repos:
78
78
- id : update-CITATION.cff
79
79
- id : update-pyproject.toml
80
80
- repo : https://github.com/psf/black
81
- rev : 23.11 .0
81
+ rev : 24.3 .0
82
82
hooks :
83
83
- id : black
84
84
- repo : https://github.com/PyCQA/isort
85
- rev : 5.12.0
85
+ rev : 5.13.2
86
86
hooks :
87
87
- id : isort
88
88
- repo : https://github.com/pycqa/pydocstyle
@@ -92,11 +92,11 @@ repos:
92
92
additional_dependencies :
93
93
- tomli
94
94
- repo : https://github.com/kumaraditya303/mirrors-pyright
95
- rev : v1.1.335
95
+ rev : v1.1.354
96
96
hooks :
97
97
- id : pyright
98
98
- repo : https://github.com/PyCQA/bandit
99
- rev : 1.7.5
99
+ rev : 1.7.8
100
100
hooks :
101
101
- id : bandit
102
102
args :
Original file line number Diff line number Diff line change 2
2
3
3
https://www.sphinx-doc.org/en/master/usage/configuration.html
4
4
"""
5
+
5
6
from repl_python_wakatime import __version__ as version # type: ignore
6
7
from repl_python_wakatime ._metainfo import ( # type: ignore
7
8
author ,
Original file line number Diff line number Diff line change 1
1
r"""Provide ``__version__`` for
2
2
`importlib.metadata.version() <https://docs.python.org/3/library/importlib.metadata.html#distribution-versions>`_.
3
3
"""
4
+
4
5
try :
5
6
from ._version import __version__ , __version_tuple__ # type: ignore
6
7
except ImportError : # for setuptools-generate
Original file line number Diff line number Diff line change 5
5
<https://gitlab.com/code-stats/code-stats-vim/-/blob/master/pythonx/codestats.py>
6
6
`_.
7
7
"""
8
+
8
9
import json
9
10
import logging
10
11
import threading
Original file line number Diff line number Diff line change 3
3
4
4
Refer `create-plugin <https://wakatime.com/help/creating-plugin>`_.
5
5
"""
6
+
6
7
import os
7
8
from subprocess import Popen # nosec: B404
8
9
from typing import Any , Callable
Original file line number Diff line number Diff line change 1
1
"""ipython
2
2
==========
3
3
"""
4
+
4
5
from typing import Any , Callable
5
6
6
7
from IPython .terminal .interactiveshell import TerminalInteractiveShell
Original file line number Diff line number Diff line change 1
1
"""ptpython
2
2
===========
3
3
"""
4
+
4
5
from typing import Any , Callable
5
6
6
7
from prompt_toolkit .formatted_text import AnyFormattedText
Original file line number Diff line number Diff line change 1
1
"""python
2
2
=========
3
3
"""
4
+
4
5
import sys
5
6
from typing import Any , Callable
6
7
Original file line number Diff line number Diff line change 1
1
"""API
2
2
======
3
3
"""
4
+
4
5
import logging
5
6
6
7
import keyring
Original file line number Diff line number Diff line change 1
1
"""Project
2
2
==========
3
3
"""
4
+
4
5
import os
5
6
from typing import Callable
6
7
You can’t perform that action at this time.
0 commit comments