Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 5, 2024
1 parent 6947ebc commit f100a5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

def print_hi(name):
# Use a breakpoint in the code line below to debug your script.
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
print(f"Hi, {name}") # Press Ctrl+F8 to toggle the breakpoint.


# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print_hi('PyCharm')
if __name__ == "__main__":
print_hi("PyCharm")

# See PyCharm help at https://www.jetbrains.com/help/pycharm/
2 changes: 0 additions & 2 deletions tests/unit_tests/toporder/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ def test_kernel_width_when_zero_median_pairwise_distances():
arr = np.zeros((100, 1), dtype=np.int64)
arr[1] = 1
assert kernel_width(arr) == 1


0 comments on commit f100a5e

Please sign in to comment.