Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-jpq committed Apr 18, 2024
1 parent aeb350d commit 9a99e6f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
6 changes: 0 additions & 6 deletions .github/.agp

This file was deleted.

Empty file added .github/_
Empty file.
2 changes: 1 addition & 1 deletion coq/shared/trans.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def _indent_to_line(context: Context, line_before: str) -> str:
spaces_before = line_before.replace("\t", spaces)
indent_len = len(spaces_before)
if context.expandtab:
indent = spaces_before
indent = " " * indent_len
else:
tab_len = indent_len // context.tabstop
space_len = indent_len % context.tabstop
Expand Down
8 changes: 4 additions & 4 deletions tests/clients/paths/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def test_2(self) -> None:
)
expected = sorted(
(
(Path(".github", ".agp"), False, "./.github/.agp"),
(Path(".github", "_"), False, "./.github/_"),
(Path(".github", "workflows"), True, "./.github/workflows/"),
)
)
Expand All @@ -144,7 +144,7 @@ def test_3(self) -> None:
)
expected = sorted(
(
(Path(".github", ".agp"), False, "./.github/.agp"),
(Path(".github", "_"), False, "./.github/_"),
(Path(".github", "workflows"), True, "./.github/workflows/"),
)
)
Expand Down Expand Up @@ -182,7 +182,7 @@ def test_5(self) -> None:
)
expected = sorted(
(
(Path(".github", ".agp"), False, "./.github/.agp"),
(Path(".github", "_"), False, "./.github/_"),
(Path(".github", "workflows"), True, "./.github/workflows/"),
)
)
Expand All @@ -201,7 +201,7 @@ def test_6(self) -> None:
)
expected = sorted(
(
(Path(".github", ".agp"), False, "./.github/.agp"),
(Path(".github", "_"), False, "./.github/_"),
(Path(".github", "workflows"), True, "./.github/workflows/"),
)
)
Expand Down

0 comments on commit 9a99e6f

Please sign in to comment.