We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7ccb6 commit 2c317f5Copy full SHA for 2c317f5
.flake8
@@ -1,2 +1,3 @@
1
[flake8]
2
+ignore = E203, W503
3
max-line-length = 88
tinylink/cli.py
@@ -127,7 +127,7 @@ def process_stdin(link: tinylink.TinyLink) -> Optional[bool]:
127
try:
128
# Assume it is a float.
129
value = struct.pack(link.endianness + pack, float(item))
130
- except:
+ except: # noqa
131
132
# Assume it is an int.
133
value = struct.pack(link.endianness + pack, int(item, 0))
0 commit comments