diff options
| author | Chris Simpkins <git.simpkins@gmail.com> | 2020-02-07 22:09:55 -0500 |
|---|---|---|
| committer | Chris Simpkins <git.simpkins@gmail.com> | 2020-02-07 22:09:55 -0500 |
| commit | 6ce8d2b00005143d5f0fb0c9b712ece7709b3ecf (patch) | |
| tree | d461b18d0a93608aa86b0c2e228381b827f54d9b | |
| parent | 19aaf639459705e2b397f2b8a12f3d73ef0748b2 (diff) | |
| download | rust-6ce8d2b00005143d5f0fb0c9b712ece7709b3ecf.tar.gz rust-6ce8d2b00005143d5f0fb0c9b712ece7709b3ecf.zip | |
PEP8 format spacing
| -rwxr-xr-x | src/bootstrap/configure.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py index 7cfc5385e21..27bd6d028cd 100755 --- a/src/bootstrap/configure.py +++ b/src/bootstrap/configure.py @@ -392,11 +392,12 @@ for target in configured_targets: def is_number(value): - try: - float(value) - return True - except ValueError: - return False + try: + float(value) + return True + except ValueError: + return False + # Here we walk through the constructed configuration we have from the parsed # command line arguments. We then apply each piece of configuration by |
