update organize import trigger, update capabilities data, fix mypy (#654)

* update organize import trigger

* update capabilities data

* fix mypy error (jaconv is using a import hack)
This commit is contained in:
Patrick Kanzler 2024-08-25 00:21:47 +02:00 committed by GitHub
parent 82386f7496
commit 22982fbd12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 3 deletions

View File

@ -12,7 +12,7 @@
"editor.formatOnPaste": true,
"python.formatting.provider": "black",
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,

@ -1 +1 @@
Subproject commit 375135d552e3fe65cbd1462b8b8d56c401b13ae7
Subproject commit e3bf6056ee75cf70ffaccb925081fffa7ad6ced5

View File

@ -4,7 +4,10 @@
I doubt that this currently works correctly.
"""
import types
import typing
jaconv: typing.Optional[types.ModuleType]
try:
import jaconv
except ImportError:

View File

@ -7,7 +7,8 @@
:copyright: Copyright (c) 2016 `python-escpos <https://github.com/python-escpos>`_
:license: MIT
"""
import types
import typing
import hypothesis.strategies as st
import pytest
@ -111,6 +112,7 @@ class TestMagicEncode:
assert driver.output == b"\x1bt\x00? ist teuro."
jaconv: typing.Optional[types.ModuleType]
try:
import jaconv
except ImportError: