Skip to content

Commit

Permalink
Fix flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Jun 1, 2020
1 parent 94cf00d commit 98c48a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_mul__raise__type_error(self):
def test_mul__raise_for_same_type(self):
with pytest.raises(TypeError) as e:
Mass("1 kg") * Mass("1 kg")
assert str(e.value) == f"can't multiply type 'Mass' and 'Mass'"
assert str(e.value) == "can't multiply type 'Mass' and 'Mass'"

def test_imul(self):
d = self.measure(**{self.unit: 2})
Expand Down

0 comments on commit 98c48a1

Please sign in to comment.