Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewAnnex committed Jul 7, 2021
1 parent b35e3b4 commit 8e2f38b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions asap_stereo/asap.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def create_stereodirs_lis():
out.write(left_right)

@staticmethod
def create_sterodirs():
def create_stereodirs():
Path(sh.cat('./stereodirs.lis').strip()).mkdir(exist_ok=True)

@staticmethod
Expand Down Expand Up @@ -863,7 +863,7 @@ def step_three(self):
"""
self.cs.create_stereopairs_lis()
self.cs.create_stereodirs_lis()
self.cs.create_sterodirs()
self.cs.create_stereodirs()
self.cs.create_stereopair_lis()
# copy the cub files into the both directory
_, _, both = self.cs.parse_stereopairs()
Expand Down Expand Up @@ -1239,7 +1239,7 @@ def step_two(self):
"""
self.cs.create_stereopairs_lis()
self.cs.create_stereodirs_lis()
self.cs.create_sterodirs()
self.cs.create_stereodirs()
self.cs.create_stereopair_lis()

@rich_logger
Expand Down

0 comments on commit 8e2f38b

Please sign in to comment.