summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-02-26 08:56:24 +0100
committerGitHub <noreply@github.com>2019-02-26 08:56:24 +0100
commit3f2f132a9fdf7a48ec6131d5498145dded3cfcad (patch)
tree63e6170b35f6b392bf2e3d3feb6996b886e4d36f /examples
parent2ad26f8bfef0e39b3789d9e6d4fcbf76820c9867 (diff)
downloadpysnmp-git-3f2f132a9fdf7a48ec6131d5498145dded3cfcad.tar.gz
PEP-8 long lines and dunders (#245)
This patch massively reformats the whole codebase mainly wrapping long lines and eliminating dundered private attributes.
Diffstat (limited to 'examples')
-rw-r--r--examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py1
-rw-r--r--examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py1
-rw-r--r--examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py1
-rw-r--r--examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py1
-rw-r--r--examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py1
-rw-r--r--examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py1
6 files changed, 6 insertions, 0 deletions
diff --git a/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py b/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py
index d63332f9..dfaefc62 100644
--- a/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py
+++ b/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py
@@ -21,6 +21,7 @@ Functionally similar to:
"""#
import asyncio
+
from pysnmp.hlapi.v1arch.asyncio import *
diff --git a/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py b/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py
index f81c909d..3b6f7513 100644
--- a/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py
+++ b/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py
@@ -18,6 +18,7 @@ Functionally similar to:
"""#
import asyncio
+
from pysnmp.hlapi.v1arch.asyncio import *
diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py
index c0532c09..e3043239 100644
--- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py
+++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py
@@ -18,6 +18,7 @@ Functionally similar to:
"""#
import asyncio
+
from pysnmp.hlapi.v1arch.asyncio import *
diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
index f0e14ae5..0a496bd6 100644
--- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
+++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
@@ -18,6 +18,7 @@ Functionally similar to:
"""#
import asyncio
+
from pysnmp.hlapi.v1arch.asyncio import *
diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py
index 3ce3c232..12f7a142 100644
--- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py
+++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py
@@ -18,6 +18,7 @@ Functionally similar to:
"""#
import asyncio
+
from pysnmp.hlapi.v1arch.asyncio import *
diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py
index 5659a3a5..ba54d1bd 100644
--- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py
+++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py
@@ -16,6 +16,7 @@ Functionally similar to:
"""#
import asyncio
+
from pysnmp.hlapi.v1arch.asyncio import *