Skip to content

Commit

Permalink
Fix ruff error
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Feb 11, 2023
1 parent 78237d6 commit 8859eea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test-crates/pyo3-pure/pyo3_pure.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class DummyClass:
@staticmethod
def get_42() -> int: ...
def get_42() -> int:
...

fourtytwo: int

2 comments on commit 8859eea

@messense
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, forgot to mention, this is a ruff incompatibility with black, see astral-sh/ruff#2763

@konstin
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

of i didn't realize, black should definitely get precedence then

Please sign in to comment.