Skip to content

Commit

Permalink
,
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Jan 11, 2024
1 parent 51fd609 commit fd1de34
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/ruff_linter/src/rules/ruff/rules/sort_dunder_all.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ use itertools::Itertools;
/// import sys
///
/// __all__ = [
/// "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
/// "cccccccccccccccccccccccccccccccccc",
/// "aaaaaaaaaaaaaaaaaaaaaaaaaa"
/// "b",
/// "c",
/// "a",
/// ]
///
/// if sys.platform == "win32":
Expand All @@ -39,9 +39,9 @@ use itertools::Itertools;
/// import sys
///
/// __all__ = [
/// "aaaaaaaaaaaaaaaaaaaaaaaaaa",
/// "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
/// "cccccccccccccccccccccccccccccccccc"
/// "a",
/// "b",
/// "c",
/// ]
///
/// if sys.platform == "win32":
Expand Down

0 comments on commit fd1de34

Please sign in to comment.