Skip to content

Commit e893e8a

Browse files
committed
Linted files
1 parent 71cec28 commit e893e8a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/slice_dataset.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
'but falls back to string. '
7070
),
7171
)
72-
flags.declare_key_flag("sel") # To make it appear with --help or --helpshort
72+
flags.declare_key_flag('sel') # To make it appear with --help or --helpshort
7373

7474
SEL_STRINGS = flag_utils.DEFINE_dim_value_pairs(
7575
'sel_strings',
@@ -84,7 +84,7 @@
8484
'Useful, since years should be sliced using strings like "2000". '
8585
),
8686
)
87-
flags.declare_key_flag("sel_strings")
87+
flags.declare_key_flag('sel_strings')
8888

8989
ISEL = flag_utils.DEFINE_dim_value_pairs(
9090
'isel',
@@ -97,7 +97,7 @@
9797
'a list of "+" delimited ints.'
9898
),
9999
)
100-
flags.declare_key_flag("isel")
100+
flags.declare_key_flag('isel')
101101

102102
DROP_SEL = flag_utils.DEFINE_dim_value_pairs(
103103
'drop_sel',
@@ -112,7 +112,7 @@
112112
'but falls back to string. '
113113
),
114114
)
115-
flags.declare_key_flag("drop_sel")
115+
flags.declare_key_flag('drop_sel')
116116

117117
DROP_SEL_STRINGS = flag_utils.DEFINE_dim_value_pairs(
118118
'drop_sel_strings',
@@ -127,7 +127,7 @@
127127
'Useful, since years should be sliced using strings like "2000". '
128128
),
129129
)
130-
flags.declare_key_flag("drop_sel_strings")
130+
flags.declare_key_flag('drop_sel_strings')
131131

132132
DROP_ISEL = flag_utils.DEFINE_dim_value_pairs(
133133
'drop_isel',
@@ -140,7 +140,7 @@
140140
'a list of "+" delimited ints.'
141141
),
142142
)
143-
flags.declare_key_flag("drop_isel")
143+
flags.declare_key_flag('drop_isel')
144144

145145
DROP_VARIABLES = flags.DEFINE_list(
146146
'drop_variables',
@@ -163,7 +163,7 @@
163163
OUTPUT_CHUNKS = flag_utils.DEFINE_chunks(
164164
'output_chunks', '', help='Chunk sizes overriding input chunks.'
165165
)
166-
flags.declare_key_flag("output_chunks")
166+
flags.declare_key_flag('output_chunks')
167167

168168
RUNNER = flags.DEFINE_string(
169169
'runner', None, help='Beam runner. Use DirectRunner for local execution.'

0 commit comments

Comments
 (0)