Skip to content

Commit

Permalink
black: reformat generate.py and scraper template modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Oct 29, 2023
1 parent 60b03c1 commit 15ad3f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def replace(self, replacement_text, start, length):

def result(self):
code = self.code
for (replacement_text, start, length) in self.replacements:
for replacement_text, start, length in self.replacements:
start = start + self.delta
end = start + length
code = code[:start] + replacement_text + code[end:]
Expand Down
1 change: 0 additions & 1 deletion templates/test_scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class TestTemplateScraper(ScraperTest):

scraper_class = Template

def test_host(self):
Expand Down

0 comments on commit 15ad3f9

Please sign in to comment.