diff options
author | Christian Clauss <cclauss@me.com> | 2023-03-10 07:33:32 +0100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-05-02 16:36:05 +1000 |
commit | 2a1db770ce8d024b31bd1680e501e8b2a65f6570 (patch) | |
tree | fcbba2b18067f5d36764cb1d5b340b683f5d5534 /examples/network/http_server_simplistic.py | |
parent | 79e57473b20707ca948920fbce473d64dbd8ce25 (diff) | |
download | micropython-2a1db770ce8d024b31bd1680e501e8b2a65f6570.tar.gz micropython-2a1db770ce8d024b31bd1680e501e8b2a65f6570.zip |
all: Fix cases of Python variable assigned but never used.
This fixes ruff rule F841.
Diffstat (limited to 'examples/network/http_server_simplistic.py')
-rw-r--r-- | examples/network/http_server_simplistic.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/network/http_server_simplistic.py b/examples/network/http_server_simplistic.py index 71949419e6..a9831127ff 100644 --- a/examples/network/http_server_simplistic.py +++ b/examples/network/http_server_simplistic.py @@ -28,7 +28,6 @@ def main(): while True: res = s.accept() client_s = res[0] - client_addr = res[1] req = client_s.recv(4096) print("Request:") print(req) |