Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Black produced different code on the second pass of the formatter #2040

Closed
nikitakunevich opened this issue Mar 12, 2021 · 1 comment
Closed
Labels
C: unstable formatting Formatting changed on the second pass R: duplicate This issue or pull request already exists T: bug Something isn't working

Comments

@nikitakunevich
Copy link

To Reproduce

  1. Run Black on this file:
def test_assembly_segment():
    assert assembly_segment(
        ResultSegment(
            result_ids=['9266515960', '9266515961', '9266515962', '9266515963', '9266515964'],
            result_mask_shares=[
                [7032960221190207203, 7525588980467272663, -560548502101970051, -4929818894735814806, -4917001310622507502],
                [-7032960221190141667, -7525588980467272663, 560548502102035587, 4929818894735814806, 4917001310622573038]
            ],
            segment_size=3
        )
    ) == ['9266515960', '9266515962', '9266515964']

  1. See error "Black produced different code on the second pass of the formatter"
    Error log:
Mode(target_versions=set(), line_length=88, string_normalization=True, experimental_string_processing=False, is_pyi=False)
--- source
+++ first pass
@@ -1,15 +1,31 @@
 def test_assembly_segment():
     assert assembly_segment(
         ResultSegment(
-            result_ids=['9266515960', '9266515961', '9266515962', '9266515963', '9266515964'],
+            result_ids=[
+                "9266515960",
+                "9266515961",
+                "9266515962",
+                "9266515963",
+                "9266515964",
+            ],
             result_mask_shares=[
-                [7032960221190207203, 7525588980467272663, -560548502101970051, -4929818894735814806,
-                 -4917001310622507502],
-                [-7032960221190141667, -7525588980467272663, 560548502102035587, 4929818894735814806,
-                 4917001310622573038]
+                [
+                    7032960221190207203,
+                    7525588980467272663,
+                    -560548502101970051,
+                    -4929818894735814806,
+                    -4917001310622507502,
+                ],
+                [
+                    -7032960221190141667,
+                    -7525588980467272663,
+                    560548502102035587,
+                    4929818894735814806,
+                    4917001310622573038,
+                ],
             ],
-            segment_size=3
+            segment_size=3,
         )
-    ) == ['9266515960', '9266515962', '9266515964']
+    ) == ["9266515960", "9266515962", "9266515964"]
--- first pass
+++ second pass
@@ -1,33 +1,36 @@
 def test_assembly_segment():
-    assert assembly_segment(
-        ResultSegment(
-            result_ids=[
-                "9266515960",
-                "9266515961",
-                "9266515962",
-                "9266515963",
-                "9266515964",
-            ],
-            result_mask_shares=[
-                [
-                    7032960221190207203,
-                    7525588980467272663,
-                    -560548502101970051,
-                    -4929818894735814806,
-                    -4917001310622507502,
+    assert (
+        assembly_segment(
+            ResultSegment(
+                result_ids=[
+                    "9266515960",
+                    "9266515961",
+                    "9266515962",
+                    "9266515963",
+                    "9266515964",
                 ],
-                [
-                    -7032960221190141667,
-                    -7525588980467272663,
-                    560548502102035587,
-                    4929818894735814806,
-                    4917001310622573038,
+                result_mask_shares=[
+                    [
+                        7032960221190207203,
+                        7525588980467272663,
+                        -560548502101970051,
+                        -4929818894735814806,
+                        -4917001310622507502,
+                    ],
+                    [
+                        -7032960221190141667,
+                        -7525588980467272663,
+                        560548502102035587,
+                        4929818894735814806,
+                        4917001310622573038,
+                    ],
                 ],
-            ],
-            segment_size=3,
+                segment_size=3,
+            )
         )
-    ) == ["9266515960", "9266515962", "9266515964"]
+        == ["9266515960", "9266515962", "9266515964"]
+    )
@nikitakunevich nikitakunevich added the T: bug Something isn't working label Mar 12, 2021
@ichard26 ichard26 added the C: unstable formatting Formatting changed on the second pass label Mar 12, 2021
@ichard26 ichard26 added the R: duplicate This issue or pull request already exists label Apr 25, 2021
@ichard26
Copy link
Collaborator

Hello!

All reproduction cases in this issue format without error on master. The fixing commit was 8672af3 from PR GH-2126. I'll be marking this issue as a duplicate of GH-1629 since that's what GH-2126 aimed to fix and it's highly likely this issue falls under GH-1629.

Since we use the issue tracker as a reflection of what's on master, I'll be closing this issue. If you have any issues, especially with the new (but stable) output, please open a new issue. Oh and the fix should be available in a published release soon, see GH-2125 for more info.

Thank you for reporting!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: unstable formatting Formatting changed on the second pass R: duplicate This issue or pull request already exists T: bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants