Skip to content

Commit 6b81b34

Browse files
committed
lint
1 parent d16e015 commit 6b81b34

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ ignore = [
209209
# pydocstyle
210210
"D107", # Missing docstring in __init__
211211
"D417", # Missing argument descriptions in the docstring, this is a bug from pydocstyle: https://github.com/PyCQA/pydocstyle/issues/449
212-
"PD901",
213212
"PD101",
214213
]
215214

tests/unit/multivariate/test_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
import re
12
import sys
23
from unittest import TestCase
34
from unittest.mock import MagicMock, patch
45

56
import numpy as np
67
import pandas as pd
78
import pytest
8-
import re
99

1010
from copulas.bivariate import CopulaTypes
1111
from copulas.multivariate.tree import Edge, Tree, TreeTypes, get_tree

0 commit comments

Comments
 (0)