Skip to content
Snippets Groups Projects
Commit 1c1c564b authored by Jonathan Maw's avatar Jonathan Maw
Browse files

sandbox.py: Remove redundant Sandbox.__directory

parent bdebc8ff
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,7 @@ class Sandbox():
# others are private to this class.
self._root = os.path.join(directory, 'root')
self._output_directory = None
self.__directory = directory
self.__scratch = os.path.join(self.__directory, 'scratch')
self.__scratch = os.path.join(directory, 'scratch')
for directory_ in [self._root, self.__scratch]:
os.makedirs(directory_, exist_ok=True)
self._vdir = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment