Skip to content

Commit

Permalink
Merge pull request #3 from kinow/remove-semicolons
Browse files Browse the repository at this point in the history
Remove unnecessary semicolon

Thank you for tidying this up.
  • Loading branch information
davidhassell committed Oct 25, 2019
2 parents e359b25 + 67943dd commit 72298d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cf/test/test_dsg.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _make_contiguous_file(filename):
row_size[...] = [3, 7, 5, 9]

time = n.createVariable('time', 'f8', ('obs',))
time.standard_name = "time";
time.standard_name = "time"
time.long_name = "time of measurement"
time.units = "days since 1970-01-01 00:00:00"
time[ 0: 3] = [-3, -2, -1]
Expand Down Expand Up @@ -141,7 +141,7 @@ def _make_indexed_file(filename):
range(-2, 7)]

time = n.createVariable('time', 'f8', ('obs',))
time.standard_name = "time";
time.standard_name = "time"
time.long_name = "time of measurement"
time.units = "days since 1970-01-01 00:00:00"
ssi = [0, 0, 0, 0]
Expand Down Expand Up @@ -244,7 +244,7 @@ def _make_indexed_contiguous_file(filename):
2, 2, 2, 1, 2, 3, 3, 3, 2, 3, 1, 1] # sum = 118

time = n.createVariable('time', 'f8', ('profile',))
time.standard_name = "time";
time.standard_name = "time"
time.long_name = "time"
time.units = "days since 1970-01-01 00:00:00"
t0 = [3, 0, -3]
Expand Down

0 comments on commit 72298d4

Please sign in to comment.