We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a66db8f commit c7cf69aCopy full SHA for c7cf69a
1 file changed
fourinsight/engineroom/utils/_core.py
@@ -45,7 +45,7 @@ def pull(self, raise_on_missing=True):
45
current_pos = self.tell()
46
self.seek(0)
47
try:
48
- characters_written = self._pull()
+ self._pull()
49
except self._SOURCE_NOT_FOUND_ERROR as e:
50
if raise_on_missing:
51
self.seek(current_pos)
@@ -54,8 +54,8 @@ def pull(self, raise_on_missing=True):
54
self.truncate(0)
55
else:
56
self.flush()
57
- pos = self.tell()
58
- self.truncate(pos)
+ pos = self.tell()
+ self.truncate(pos)
59
60
def push(self):
61
"""
0 commit comments