Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
0834efd6
Commit
0834efd6
authored
May 07, 2022
by
vruge
Committed by
oroulet
May 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test, enable check override
parent
d9aa08e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
asyncua/client/ua_client.py
asyncua/client/ua_client.py
+2
-2
setup.cfg
setup.cfg
+1
-1
No files found.
asyncua/client/ua_client.py
View file @
0834efd6
...
...
@@ -41,11 +41,11 @@ class UASocketProtocol(asyncio.Protocol):
# passing back the processed response to the request so that it can return it.
self
.
_open_secure_channel_exchange
=
None
def
connection_made
(
self
,
transport
:
asyncio
.
Transport
):
def
connection_made
(
self
,
transport
:
asyncio
.
Transport
):
# type: ignore
self
.
state
=
self
.
OPEN
self
.
transport
=
transport
def
connection_lost
(
self
,
exc
:
Exception
):
def
connection_lost
(
self
,
exc
:
Optional
[
Exception
]
):
self
.
logger
.
info
(
"Socket has closed connection"
)
self
.
state
=
self
.
CLOSED
self
.
transport
=
None
...
...
setup.cfg
View file @
0834efd6
...
...
@@ -7,4 +7,4 @@ per-file-ignores =
[pycodestyle]
max-line-length = 160
[mypy]
disable_error_code = misc, arg-type, attr-defined, assignment, union-attr, var-annotated
, override
disable_error_code = misc, arg-type, attr-defined, assignment, union-attr, var-annotated
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment