Skip to content

Commit dfe9c9c

Browse files
committed
Fix indentation
1 parent 7361daf commit dfe9c9c

13 files changed

Lines changed: 96 additions & 96 deletions

File tree

dataframely/columns/_base.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ def __init__(
6262
check: A custom rule or multiple rules to run for this column. This can be:
6363
6464
- A single callable that returns a non-aggregated boolean expression.
65-
The name of the rule is derived from the callable name, or defaults to
66-
"check" for lambdas.
65+
The name of the rule is derived from the callable name, or defaults to
66+
"check" for lambdas.
6767
6868
- A list of callables, where each callable returns a non-aggregated
69-
boolean expression. The name of the rule is derived from the callable
70-
name, or defaults to "check" for lambdas. Where multiple rules result
71-
in the same name, the suffix __i is appended to the name.
69+
boolean expression. The name of the rule is derived from the callable
70+
name, or defaults to "check" for lambdas. Where multiple rules result
71+
in the same name, the suffix __i is appended to the name.
7272
7373
- A dictionary mapping rule names to callables, where each callable
74-
returns a non-aggregated boolean expression.
74+
returns a non-aggregated boolean expression.
7575
7676
All rule names provided here are given the prefix `"check_"`.
7777
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/any.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@ def __init__(
3636
check: A custom rule or multiple rules to run for this column. This can be:
3737
3838
- A single callable that returns a non-aggregated boolean expression.
39-
The name of the rule is derived from the callable name, or defaults to
40-
"check" for lambdas.
39+
The name of the rule is derived from the callable name, or defaults to
40+
"check" for lambdas.
4141
4242
- A list of callables, where each callable returns a non-aggregated
43-
boolean expression. The name of the rule is derived from the callable
44-
name, or defaults to "check" for lambdas. Where multiple rules result
45-
in the same name, the suffix __i is appended to the name.
43+
boolean expression. The name of the rule is derived from the callable
44+
name, or defaults to "check" for lambdas. Where multiple rules result
45+
in the same name, the suffix __i is appended to the name.
4646
4747
- A dictionary mapping rule names to callables, where each callable
48-
returns a non-aggregated boolean expression.
48+
returns a non-aggregated boolean expression.
4949
5050
All rule names provided here are given the prefix `"check_"`.
5151
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/array.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ def __init__(
5252
check: A custom rule or multiple rules to run for this column. This can be:
5353
5454
- A single callable that returns a non-aggregated boolean expression.
55-
The name of the rule is derived from the callable name, or defaults to
56-
"check" for lambdas.
55+
The name of the rule is derived from the callable name, or defaults to
56+
"check" for lambdas.
5757
5858
- A list of callables, where each callable returns a non-aggregated
59-
boolean expression. The name of the rule is derived from the callable
60-
name, or defaults to "check" for lambdas. Where multiple rules result
61-
in the same name, the suffix __i is appended to the name.
59+
boolean expression. The name of the rule is derived from the callable
60+
name, or defaults to "check" for lambdas. Where multiple rules result
61+
in the same name, the suffix __i is appended to the name.
6262
6363
- A dictionary mapping rule names to callables, where each callable
64-
returns a non-aggregated boolean expression.
64+
returns a non-aggregated boolean expression.
6565
6666
All rule names provided here are given the prefix `"check_"`.
6767
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/categorical.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ def __init__(
4242
check: A custom rule or multiple rules to run for this column. This can be:
4343
4444
- A single callable that returns a non-aggregated boolean expression.
45-
The name of the rule is derived from the callable name, or defaults to
46-
"check" for lambdas.
45+
The name of the rule is derived from the callable name, or defaults to
46+
"check" for lambdas.
4747
4848
- A list of callables, where each callable returns a non-aggregated
49-
boolean expression. The name of the rule is derived from the callable
50-
name, or defaults to "check" for lambdas. Where multiple rules result
51-
in the same name, the suffix __i is appended to the name.
49+
boolean expression. The name of the rule is derived from the callable
50+
name, or defaults to "check" for lambdas. Where multiple rules result
51+
in the same name, the suffix __i is appended to the name.
5252
5353
- A dictionary mapping rule names to callables, where each callable
54-
returns a non-aggregated boolean expression.
54+
returns a non-aggregated boolean expression.
5555
5656
All rule names provided here are given the prefix `"check_"`.
5757
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/datetime.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,16 @@ def __init__(
7171
check: A custom rule or multiple rules to run for this column. This can be:
7272
7373
- A single callable that returns a non-aggregated boolean expression.
74-
The name of the rule is derived from the callable name, or defaults to
75-
"check" for lambdas.
74+
The name of the rule is derived from the callable name, or defaults to
75+
"check" for lambdas.
7676
7777
- A list of callables, where each callable returns a non-aggregated
78-
boolean expression. The name of the rule is derived from the callable
79-
name, or defaults to "check" for lambdas. Where multiple rules result
80-
in the same name, the suffix __i is appended to the name.
78+
boolean expression. The name of the rule is derived from the callable
79+
name, or defaults to "check" for lambdas. Where multiple rules result
80+
in the same name, the suffix __i is appended to the name.
8181
8282
- A dictionary mapping rule names to callables, where each callable
83-
returns a non-aggregated boolean expression.
83+
returns a non-aggregated boolean expression.
8484
8585
All rule names provided here are given the prefix `"check_"`.
8686
alias: An overwrite for this column's name which allows for using a column
@@ -213,16 +213,16 @@ def __init__(
213213
check: A custom rule or multiple rules to run for this column. This can be:
214214
215215
- A single callable that returns a non-aggregated boolean expression.
216-
The name of the rule is derived from the callable name, or defaults to
217-
"check" for lambdas.
216+
The name of the rule is derived from the callable name, or defaults to
217+
"check" for lambdas.
218218
219219
- A list of callables, where each callable returns a non-aggregated
220-
boolean expression. The name of the rule is derived from the callable
221-
name, or defaults to "check" for lambdas. Where multiple rules result
222-
in the same name, the suffix __i is appended to the name.
220+
boolean expression. The name of the rule is derived from the callable
221+
name, or defaults to "check" for lambdas. Where multiple rules result
222+
in the same name, the suffix __i is appended to the name.
223223
224224
- A dictionary mapping rule names to callables, where each callable
225-
returns a non-aggregated boolean expression.
225+
returns a non-aggregated boolean expression.
226226
227227
All rule names provided here are given the prefix `"check_"`.
228228
alias: An overwrite for this column's name which allows for using a column
@@ -367,16 +367,16 @@ def __init__(
367367
check: A custom rule or multiple rules to run for this column. This can be:
368368
369369
- A single callable that returns a non-aggregated boolean expression.
370-
The name of the rule is derived from the callable name, or defaults to
371-
"check" for lambdas.
370+
The name of the rule is derived from the callable name, or defaults to
371+
"check" for lambdas.
372372
373373
- A list of callables, where each callable returns a non-aggregated
374-
boolean expression. The name of the rule is derived from the callable
375-
name, or defaults to "check" for lambdas. Where multiple rules result
376-
in the same name, the suffix __i is appended to the name.
374+
boolean expression. The name of the rule is derived from the callable
375+
name, or defaults to "check" for lambdas. Where multiple rules result
376+
in the same name, the suffix __i is appended to the name.
377377
378378
- A dictionary mapping rule names to callables, where each callable
379-
returns a non-aggregated boolean expression.
379+
returns a non-aggregated boolean expression.
380380
381381
All rule names provided here are given the prefix `"check_"`.
382382
alias: An overwrite for this column's name which allows for using a column
@@ -535,16 +535,16 @@ def __init__(
535535
check: A custom rule or multiple rules to run for this column. This can be:
536536
537537
- A single callable that returns a non-aggregated boolean expression.
538-
The name of the rule is derived from the callable name, or defaults to
539-
"check" for lambdas.
538+
The name of the rule is derived from the callable name, or defaults to
539+
"check" for lambdas.
540540
541541
- A list of callables, where each callable returns a non-aggregated
542-
boolean expression. The name of the rule is derived from the callable
543-
name, or defaults to "check" for lambdas. Where multiple rules result
544-
in the same name, the suffix __i is appended to the name.
542+
boolean expression. The name of the rule is derived from the callable
543+
name, or defaults to "check" for lambdas. Where multiple rules result
544+
in the same name, the suffix __i is appended to the name.
545545
546546
- A dictionary mapping rule names to callables, where each callable
547-
returns a non-aggregated boolean expression.
547+
returns a non-aggregated boolean expression.
548548
549549
All rule names provided here are given the prefix `"check_"`.
550550
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/decimal.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ def __init__(
6060
check: A custom rule or multiple rules to run for this column. This can be:
6161
6262
- A single callable that returns a non-aggregated boolean expression.
63-
The name of the rule is derived from the callable name, or defaults to
64-
"check" for lambdas.
63+
The name of the rule is derived from the callable name, or defaults to
64+
"check" for lambdas.
6565
6666
- A list of callables, where each callable returns a non-aggregated
67-
boolean expression. The name of the rule is derived from the callable
68-
name, or defaults to "check" for lambdas. Where multiple rules result
69-
in the same name, the suffix __i is appended to the name.
67+
boolean expression. The name of the rule is derived from the callable
68+
name, or defaults to "check" for lambdas. Where multiple rules result
69+
in the same name, the suffix __i is appended to the name.
7070
7171
- A dictionary mapping rule names to callables, where each callable
72-
returns a non-aggregated boolean expression.
72+
returns a non-aggregated boolean expression.
7373
7474
All rule names provided here are given the prefix `"check_"`.
7575
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/enum.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ def __init__(
4949
check: A custom rule or multiple rules to run for this column. This can be:
5050
5151
- A single callable that returns a non-aggregated boolean expression.
52-
The name of the rule is derived from the callable name, or defaults to
53-
"check" for lambdas.
52+
The name of the rule is derived from the callable name, or defaults to
53+
"check" for lambdas.
5454
5555
- A list of callables, where each callable returns a non-aggregated
56-
boolean expression. The name of the rule is derived from the callable
57-
name, or defaults to "check" for lambdas. Where multiple rules result
58-
in the same name, the suffix __i is appended to the name.
56+
boolean expression. The name of the rule is derived from the callable
57+
name, or defaults to "check" for lambdas. Where multiple rules result
58+
in the same name, the suffix __i is appended to the name.
5959
6060
- A dictionary mapping rule names to callables, where each callable
61-
returns a non-aggregated boolean expression.
61+
returns a non-aggregated boolean expression.
6262
6363
All rule names provided here are given the prefix `"check_"`.
6464
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/float.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ def __init__(
6262
check: A custom rule or multiple rules to run for this column. This can be:
6363
6464
- A single callable that returns a non-aggregated boolean expression.
65-
The name of the rule is derived from the callable name, or defaults to
66-
"check" for lambdas.
65+
The name of the rule is derived from the callable name, or defaults to
66+
"check" for lambdas.
6767
6868
- A list of callables, where each callable returns a non-aggregated
69-
boolean expression. The name of the rule is derived from the callable
70-
name, or defaults to "check" for lambdas. Where multiple rules result
71-
in the same name, the suffix __i is appended to the name.
69+
boolean expression. The name of the rule is derived from the callable
70+
name, or defaults to "check" for lambdas. Where multiple rules result
71+
in the same name, the suffix __i is appended to the name.
7272
7373
- A dictionary mapping rule names to callables, where each callable
74-
returns a non-aggregated boolean expression.
74+
returns a non-aggregated boolean expression.
7575
7676
All rule names provided here are given the prefix `"check_"`.
7777
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/integer.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ def __init__(
5858
check: A custom rule or multiple rules to run for this column. This can be:
5959
6060
- A single callable that returns a non-aggregated boolean expression.
61-
The name of the rule is derived from the callable name, or defaults to
62-
"check" for lambdas.
61+
The name of the rule is derived from the callable name, or defaults to
62+
"check" for lambdas.
6363
6464
- A list of callables, where each callable returns a non-aggregated
65-
boolean expression. The name of the rule is derived from the callable
66-
name, or defaults to "check" for lambdas. Where multiple rules result
67-
in the same name, the suffix __i is appended to the name.
65+
boolean expression. The name of the rule is derived from the callable
66+
name, or defaults to "check" for lambdas. Where multiple rules result
67+
in the same name, the suffix __i is appended to the name.
6868
6969
- A dictionary mapping rule names to callables, where each callable
70-
returns a non-aggregated boolean expression.
70+
returns a non-aggregated boolean expression.
7171
7272
All rule names provided here are given the prefix `"check_"`.
7373
alias: An overwrite for this column's name which allows for using a column

dataframely/columns/list.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ def __init__(
6060
check: A custom rule or multiple rules to run for this column. This can be:
6161
6262
- A single callable that returns a non-aggregated boolean expression.
63-
The name of the rule is derived from the callable name, or defaults to
64-
"check" for lambdas.
63+
The name of the rule is derived from the callable name, or defaults to
64+
"check" for lambdas.
6565
6666
- A list of callables, where each callable returns a non-aggregated
67-
boolean expression. The name of the rule is derived from the callable
68-
name, or defaults to "check" for lambdas. Where multiple rules result
69-
in the same name, the suffix __i is appended to the name.
67+
boolean expression. The name of the rule is derived from the callable
68+
name, or defaults to "check" for lambdas. Where multiple rules result
69+
in the same name, the suffix __i is appended to the name.
7070
7171
- A dictionary mapping rule names to callables, where each callable
72-
returns a non-aggregated boolean expression.
72+
returns a non-aggregated boolean expression.
7373
7474
All rule names provided here are given the prefix `"check_"`.
7575
alias: An overwrite for this column's name which allows for using a column

0 commit comments

Comments
 (0)