Skip to content

Commit

Permalink
style(py): remove whitespace to satisfy style check
Browse files Browse the repository at this point in the history
Satisfy the style check by removing one blank line from the two
blank lines that separate top-level function and class
definitions.

In this regard, our style checker seems to be in disagreement
with our style guide, which defers to the standard Python
practice of using two blank lines in such cases.
  • Loading branch information
rkuester committed Aug 16, 2023
1 parent dd643ed commit e1704bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/expand_stamp_vars_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import io
import unittest


class FilterTest(unittest.TestCase):
"""A simple test of the expansion feature."""

Expand All @@ -40,5 +41,6 @@ def test_basic(self):

self.assertEqual(ostream.getvalue(), golden)


if __name__ == "__main__":
unittest.main()

0 comments on commit e1704bd

Please sign in to comment.