Skip to content

Commit

Permalink
Reformat with ruff.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemadden42 committed Jun 28, 2024
1 parent abd6c31 commit 79fbda2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
1 change: 0 additions & 1 deletion load_info.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python3
"""Check load."""


import psutil
import six

Expand Down
2 changes: 1 addition & 1 deletion threading_example.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
"""Threading example. """
"""Threading example."""

import concurrent.futures
import logging
Expand Down
18 changes: 9 additions & 9 deletions write_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,27 +78,27 @@ def gen_changelog2():
changelog["pr-1"]["meta"]["author"] = "mikemadden42"
changelog["pr-1"]["meta"]["description"] = "hello python"
changelog["pr-1"]["meta"]["hash"] = "472ab8cb35800f5a228bdb55ef6c792ced3d6e6b"
changelog["pr-1"]["meta"][
"url"
] = "https://github.com/mikemadden42/hello-changelog/pull/1"
changelog["pr-1"]["meta"]["url"] = (
"https://github.com/mikemadden42/hello-changelog/pull/1"
)
changelog["pr-1"]["changelog"] = "break(packetbeat): add java example"
changelog["pr-1"]["meta"]["tags"] = ["release-highlights", "breaking-change"]

changelog["pr-2"]["meta"]["author"] = "mikemadden42"
changelog["pr-2"]["meta"]["description"] = "hello rust"
changelog["pr-2"]["meta"]["hash"] = "42e46bdcbd95fc187fe29b0be4e9bf6403a638c6"
changelog["pr-2"]["meta"][
"url"
] = "https://github.com/mikemadden42/hello-changelog/pull/2"
changelog["pr-2"]["meta"]["url"] = (
"https://github.com/mikemadden42/hello-changelog/pull/2"
)
changelog["pr-2"]["changelog"] = "break(packetbeat): add java example"
changelog["pr-2"]["meta"]["tags"] = ["breaking-change"]

changelog["pr-3"]["meta"]["author"] = "mikemadden42"
changelog["pr-3"]["meta"]["description"] = "hello go"
changelog["pr-3"]["meta"]["hash"] = "04fcab4a7e9ccfa98ea3e7ee33c192caa5731ae0"
changelog["pr-3"]["meta"][
"url"
] = "https://github.com/mikemadden42/hello-changelog/pull/3"
changelog["pr-3"]["meta"]["url"] = (
"https://github.com/mikemadden42/hello-changelog/pull/3"
)
changelog["pr-3"]["changelog"] = LiteralUnicode(
"break(packetbeat): add java example\nfix(functionbeat, journalbeat):hello java"
)
Expand Down

0 comments on commit 79fbda2

Please sign in to comment.