Skip to content

Commit

Permalink
Merge branch 'mr/ferrara/bump_black_flake8_mypy-28717' into 'master'
Browse files Browse the repository at this point in the history
Bump Flake8, Black, MyPy

See merge request it/e3-core!98
  • Loading branch information
elsaferrara committed Jan 28, 2025
2 parents d834a23 + c4f4502 commit e7bb23c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test = [
"requests-mock"
]
check = [
"mypy==1.8.0",
"mypy==1.14.1",
"pytest", # for the pytest plugin
"bandit",
"pip-audit",
Expand Down
4 changes: 2 additions & 2 deletions src/e3/os/windows/native_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ class Internal(Structure):
class_id = 6

class Rename(Structure):
_fields_ = [] # type: list
_fields_ = []
class_id = 10

class Basic(Structure):
Expand Down Expand Up @@ -336,7 +336,7 @@ class ObjectInfo:
"""Declaration of structures returned by QueryObjectInformation."""

class Name(Structure):
_fields_: list = []
_fields_ = []
class_id = 1


Expand Down

0 comments on commit e7bb23c

Please sign in to comment.