isidentical / teyit

Formatter for your Python unit tests
MIT License
104 stars 7 forks source link

Bug - comments remove #2

Open hakancelikdev opened 3 years ago

hakancelikdev commented 3 years ago

Before

self.assertNotEquals(
    bruh, bruh
)  # tokens should be differ

After

self.assertNotEqual(
    bruh,
    bruh
)