Skip to content

Commit

Permalink
no cover the right line
Browse files Browse the repository at this point in the history
  • Loading branch information
astrowonk committed Feb 18, 2022
1 parent ec56f2c commit f3331ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpxcsv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def _process_trackpoint(trackpoint, update_dict={}):
x.tag: _try_to_float(x.text)
for x in extension.getchildren()
})
else: #pragma: no cover
else:
ext_dict.update(
{extension.tag: _try_to_float(extension.text)})
child_dict = {
Expand Down Expand Up @@ -113,7 +113,7 @@ def _process_track(self, trk):
x.tag: _try_to_float(x.text)
for x in extension.getchildren()
})
else:
else: #pragma: no cover
non_trkseg_dict.update(
{extension.tag: _try_to_float(extension.text)})

Expand Down

0 comments on commit f3331ef

Please sign in to comment.