Skip to content

Commit 5b38f31

Browse files
committed
PEP8: fix E126 continuation line over-indented for hanging indent
1 parent 14cf2a8 commit 5b38f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

v.divide.training_validation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def cleanup():
5959
columns_existing = grass.vector_columns(options['input']).keys()
6060
if newcol in columns_existing:
6161
grass.run_command(
62-
'v.db.dropcolumn', map=options['input'], columns=newcol)
62+
'v.db.dropcolumn', map=options['input'], columns=newcol)
6363

6464

6565
def extract_data(input, output, cats, value):
@@ -73,7 +73,7 @@ def extract_data(input, output, cats, value):
7373
for i in range(0, len(cats), n):
7474
cats_list = cats[i:i+n]
7575
grass.run_command(
76-
'v.db.update',
76+
'v.db.update',
7777
where='cat IN (%s)' % (','.join(cats_list)),
7878
map=input, column=newcol, value=value, quiet=True)
7979
grass.percent(i+n, len(cats), 1)

0 commit comments

Comments
 (0)