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 fd7969e commit ee28664Copy full SHA for ee28664
tests/test_dawg.py
@@ -14,7 +14,7 @@ def test_c_dawg_contains():
14
15
d = dawg_python.Dictionary()
16
17
- fd, path = tempfile.mkstemp()
+ _fd, path = tempfile.mkstemp()
18
bin_dawg.save(path)
19
20
with open(path, "rb") as f:
@@ -59,7 +59,7 @@ def test_completion(self):
59
60
def test_no_segfaults_on_invalid_file(self):
61
d = self.dawg()
62
63
with open(path, "w") as f:
64
f.write("foo")
65
0 commit comments