Skip to content

Commit c4fb71b

Browse files
committed
lint
1 parent 2b5e9fd commit c4fb71b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/compas/data/test_json_dotnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ def test_decimal():
99
after = compas.json_loads(compas.json_dumps(before))
1010
assert after == 100.0
1111

12-
except:
12+
except ImportError:
1313
pass

tests/compas/data/test_json_numpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ def test_json_numpy():
1313
after = compas.json_loads(compas.json_dumps(before))
1414
assert after == [[1, 2, 3], [1.0, 2.0, 3.0], 1.0, 1]
1515

16-
except:
16+
except ImportError:
1717
pass

0 commit comments

Comments
 (0)