Skip to content

Commit ac79251

Browse files
committed
rename GRIDS_TMP
1 parent a46f03f commit ac79251

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pinefarm/external/plough.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from . import interface
1313

1414
PLOUGHSHARE_LINK_FILENAME = "ploughshare_link.txt"
15-
GRIDS_TMP = "grids"
15+
GRIDS_FROM_PS = "grids"
1616

1717

1818
class Plough(interface.External):
@@ -71,7 +71,7 @@ def extract_tarball(self):
7171
"""Extract the contents."""
7272
with tarfile.open(self.tarball, "r:*") as tf:
7373
tf.extractall(self.dest)
74-
self.grids_dir = self.dest / self.dir_name / GRIDS_TMP
74+
self.grids_dir = self.dest / self.dir_name / GRIDS_FROM_PS
7575
grids_list = sorted(os.listdir(self.grids_dir))
7676
for grid in grids_list:
7777
grid_num, extension = grid.split(".", 2)[1:]

0 commit comments

Comments
 (0)