Compare commits

..

No commits in common. "89e8bd12952df81812267be92c49d95934926048" and "8957cd6a0490370748752871cfb54b0c1f65f2f1" have entirely different histories.

View File

@ -64,7 +64,7 @@ class Executor:
strdirectory = strdirectory[:-1]
return strdirectory
def putFileInCurrentDirectory(self, filename: str, content: bytes) -> str:
def putFileInCurrentDirectory(self, filename: str, content) -> str:
filename = self.sanitizeFile(filename)
currenctfile = os.path.join(self.currentDirectory, filename)
f = open(currenctfile, "wb")