summaryrefslogtreecommitdiff
path: root/tests/float/float_struct.py
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2020-06-03 12:19:20 -0700
committerGitHub <noreply@github.com>2020-06-03 12:19:20 -0700
commit547beb5d4740f8e5b5db5d57a7544a4b765ef0c5 (patch)
tree5b445330d04a03f517dc490b53c87f9c5a5e7516 /tests/float/float_struct.py
parent01e294536c3ca36a8c9ad0e3b2c14adb5c2b85b5 (diff)
parent79cd86445ee352861a68d395114a15c3cd4edee5 (diff)
Merge pull request #2981 from Flameeyes/master
Set up basic integration with pre-commit.
Diffstat (limited to 'tests/float/float_struct.py')
-rw-r--r--tests/float/float_struct.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/float/float_struct.py b/tests/float/float_struct.py
index c4c186b89..dd7a418ad 100644
--- a/tests/float/float_struct.py
+++ b/tests/float/float_struct.py
@@ -15,4 +15,3 @@ for fmt in ('f', 'd', '>f', '>d', '<f', '<d'):
x = struct.pack(fmt, i)
v = struct.unpack(fmt, x)[0]
print('%2s: %.17f - %s' % (fmt, v, (i == v) and 'passed' or 'failed'))
-