Skip to content

Commit eb1d4f9

Browse files
committed
Fixing tabs instead of spaces
Signed-off-by: Jason Myers <[email protected]>
1 parent 24f2e05 commit eb1d4f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

redshift_sqlalchemy/dialect.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,15 +188,15 @@ def __init__(self, select, bucket, access_key, secret_key, parallel='on'):
188188
bucket: The Amazon S3 bucket where the result will be stored
189189
access_key: The Amazon Access Key ID
190190
secret_key: The Amazon Secret Access Key
191-
parallel: If 'ON' the result will be written to multiple files. If
191+
parallel: If 'ON' the result will be written to multiple files. If
192192
'OFF' the result will write to one (1) file up to 6.2GB before
193193
splitting
194194
'''
195195
self.select = select
196196
self.bucket = bucket
197197
self.access_key = access_key
198198
self.secret_key = secret_key
199-
self.parallel = parallel
199+
self.parallel = parallel
200200

201201

202202
@compiles(UnloadFromSelect)
@@ -208,7 +208,7 @@ def visit_unload_from_select(element, compiler, **kw):
208208
'bucket': element.bucket,
209209
'access_key': element.access_key,
210210
'secret_key': element.secret_key,
211-
'parallel': element.parallel,
211+
'parallel': element.parallel,
212212
}
213213

214214
@compiles(BindParameter)

0 commit comments

Comments
 (0)