Skip to content

Commit

Permalink
Rename variable/s to make them more descriptive.
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Nov 13, 2023
1 parent b718cf8 commit 8a7fe8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/duplicate-IDs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _find_htmls(root):


def _test_finder():
for x in _find_htmls("dest/post-incs/t2/"):
for x in _find_htmls(root="dest/post-incs/t2/"):
print(x)


Expand All @@ -30,7 +30,7 @@ def _test_finder():

class MyTests:
def main(self):
for input_fn in _find_htmls("dest/post-incs/t2/"):
for input_fn in _find_htmls(root="dest/post-incs/t2/"):
# doc = self.doc(input_fn)
doc = html_unit_test.HtmlTestsDoc(None, input_fn)
results = doc.xpath('//*/@id').xpath_results
Expand Down

0 comments on commit 8a7fe8f

Please sign in to comment.