Skip to content

Commit 7ad3916

Browse files
🔍 Update index.rst (#486)
* Update index.rst Fix link that points to a fork repo * fix type comparison
1 parent ad08d4e commit 7ad3916

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ Reference
6262
:hidden:
6363
:caption: Reference
6464

65-
Contributing <https://github.com/kevinsantana11/clouddrift/blob/dev-tools/CONTRIBUTING.md>
65+
Contributing <https://github.com/Cloud-Drift/clouddrift/blob/main/CONTRIBUTING.md>
6666
api
6767

68-
.. _contributing: https://github.com/kevinsantana11/clouddrift/blob/dev-tools/CONTRIBUTING.md
68+
.. _contributing: https://github.com/Cloud-Drift/clouddrift/blob/main/CONTRIBUTING.md
6969
.. Indices and tables
7070
.. ==================
7171

tests/signal_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_size(self):
2424
def test_imag(self):
2525
x = np.random.rand(99) + 1j * np.random.rand(99)
2626
z = analytic_signal(x)
27-
self.assertTrue(type(z) == tuple)
27+
self.assertTrue(type(z) is tuple)
2828

2929
def test_real_odd(self):
3030
x = np.random.rand(99)

0 commit comments

Comments
 (0)