Skip to content

Commit 9cc4e94

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dc953aa commit 9cc4e94

4 files changed

Lines changed: 277 additions & 278 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
python -m pip install --upgrade pip
2828
pip install -r requirements.txt -r requirements.test.txt
29-
29+
3030
- name: Test with pytest
3131
run: |
3232
pytest

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ cython_debug/
182182
.abstra/
183183

184184
# Visual Studio Code
185-
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
185+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186186
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187-
# and can be added to the global gitignore or merged into this file. However, if you prefer,
187+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
188188
# you could uncomment the following to ignore the entire vscode folder
189189
# .vscode/
190190

scallops/_version.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212

1313
TYPE_CHECKING = False
1414
if TYPE_CHECKING:
15-
from typing import Tuple
16-
from typing import Union
15+
from typing import Tuple, Union
1716

1817
VERSION_TUPLE = Tuple[Union[int, str], ...]
1918
COMMIT_ID = Union[str, None]
@@ -28,7 +27,7 @@
2827
commit_id: COMMIT_ID
2928
__commit_id__: COMMIT_ID
3029

31-
__version__ = version = '1.2.1.dev109+ga40e829cd.d20260120'
32-
__version_tuple__ = version_tuple = (1, 2, 1, 'dev109', 'ga40e829cd.d20260120')
30+
__version__ = version = "1.2.1.dev109+ga40e829cd.d20260120"
31+
__version_tuple__ = version_tuple = (1, 2, 1, "dev109", "ga40e829cd.d20260120")
3332

34-
__commit_id__ = commit_id = 'ga40e829cd'
33+
__commit_id__ = commit_id = "ga40e829cd"

0 commit comments

Comments
 (0)