diff options
author | Frederick Muriuki Muriithi | 2022-04-20 13:26:20 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-04-20 13:26:20 +0300 |
commit | 5897b6ec7fbd1226cd68a292122cc494e46f6829 (patch) | |
tree | eb7cf72b8da2546aded142e684b9b84ac02a23d9 /tests/strategies.py | |
parent | 8954890bd7410d79ce151196f406b8e1b6985238 (diff) | |
download | gn-uploader-5897b6ec7fbd1226cd68a292122cc494e46f6829.tar.gz |
Fix linting issues
Diffstat (limited to 'tests/strategies.py')
-rw-r--r-- | tests/strategies.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/strategies.py b/tests/strategies.py deleted file mode 100644 index ccda362..0000000 --- a/tests/strategies.py +++ /dev/null @@ -1,8 +0,0 @@ -"""Module holding custom data generation strategies""" - -from hypothesis.strategies import characters, composite - -@composite -def average_numbers_string(draw): - num = draw(floats(allow_nan=False, allow_infinity=False,)) - return f"{num:.3f}" |