Skip to content

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
sravfeyn authored and snopoke committed May 15, 2018
1 parent 128515b commit 3a407f6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions commcare_export/env.py
Expand Up @@ -254,9 +254,10 @@ def str2num(val):
try:
return int(val)
except ValueError:
return float(val)
except ValueError:
return None
try:
return float(val)
except ValueError:
return None


@unwrap('val')
Expand Down

0 comments on commit 3a407f6

Please sign in to comment.