Skip to content

Commit c7f7880

Browse files
fatbuddydovahcrow
authored andcommitted
Fix the styling issues caused by black lib
1 parent b0756ce commit c7f7880

File tree

235 files changed

+362
-152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+362
-152
lines changed

dataprep/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
Dataprep let you prepare your data using a single library with a few lines of code.
66
"""
7+
78
import logging
89

910
DEFAULT_PARTITIONS = 1

dataprep/clean/address_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Constants used by the clean_address() and validate_address() functions
33
"""
4+
45
# pylint: disable=C0301, C0302, E1101
56

67
from builtins import zip

dataprep/clean/clean_ad_nrt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
Andorra NRT (Número de Registre Tributari, Andorra tax number).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_al_nipt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
NIPT (Numri i Identifikimit për Personin e Tatueshëm, Albanian VAT number).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_ar_cbu.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
CBU (Clave Bancaria Uniforme, Argentine bank account number).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_ar_cuit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
CUIT (Código Único de Identificación Tributaria, Argentinian tax number).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_ar_dni.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
DNI (Documento Nacional de Identidad, Argentinian national identity nr.).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_at_uid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
UID (Umsatzsteuer-Identifikationsnummer, Austrian VAT number).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_at_vnr.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Clean and validate a DataFrame column containing
33
VNR, SVNR, VSNR (Versicherungsnummer, Austrian social security number).
44
"""
5+
56
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches, unused-argument, E1101, E1133
67
from typing import Any, Union
78
from operator import itemgetter

dataprep/clean/clean_au_abn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Clean and validate a DataFrame column containing Australian Business Numbers (ABNs).
33
"""
4+
45
# pylint: disable=too-many-lines, too-many-arguments, too-many-branches
56
from typing import Any, Union
67
from operator import itemgetter

0 commit comments

Comments
 (0)