Skip to content

Commit e77981f

Browse files
committed
Fix file ends for CI
1 parent 59429cd commit e77981f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

tests/circuitpython-manual/socketpool/client/host-server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
data = conn.recv(128)
2525
print("got: " + str(data))
2626
conn.sendall(data)
27-
print("sent: " + str(data))
27+
print("sent: " + str(data))

tests/circuitpython-manual/socketpool/client/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Accepting connections
4343
Connected by ('192.168.10.128', 64509)
4444
got: b'Hello, world'
4545
sent: b'Hello, world'
46-
```
46+
```

tests/circuitpython-manual/socketpool/server/host-client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@
1515
print("Receiving")
1616
data = s.recv(1024)
1717
print('Received', repr(data))
18-

0 commit comments

Comments
 (0)