Skip to content

Commit

Permalink
Merge pull request #14 from kozistr/fix/indentation
Browse files Browse the repository at this point in the history
Fix indentation in exercise 9_4
  • Loading branch information
dabeaz authored Jul 20, 2023
2 parents fab0426 + e92c181 commit 13df3ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Exercises/ex9_4.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def create_formatter(name, column_formats=None, upper_headers=False):

if column_formats:
class formatter_cls(ColumnFormatMixin, formatter_cls):
formats = column_formats
formats = column_formats

if upper_headers:
class formatter_cls(UpperHeadersMixin, formatter_cls):
Expand Down Expand Up @@ -139,7 +139,7 @@ def create_formatter(name, column_formats=None, upper_headers=False):

if column_formats:
class formatter_cls(ColumnFormatMixin, formatter_cls):
formats = column_formats
formats = column_formats

if upper_headers:
class formatter_cls(UpperHeadersMixin, formatter_cls):
Expand Down

0 comments on commit 13df3ab

Please sign in to comment.