Skip to content

Commit

Permalink
Removed encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Nilsson committed Feb 12, 2024
1 parent 14b8bd4 commit de6a66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pilot/test/test_copytools_mv.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def setUp(self):
dispatchdblocktokenforout += ",NULL"
_data = [random.randint(0, 255) for _ in range(0, filesize)]
fname = os.path.join(self.tmp_src_dir, fname)
with open(fname, "wb", encoding='utf-8') as new_file:
with open(fname, "wb") as new_file:
new_file.write(str(_data))

# add to list
Expand Down

0 comments on commit de6a66c

Please sign in to comment.