AllenDowney / ThinkDSP

Think DSP: Digital Signal Processing in Python, by Allen B. Downey.
https://allendowney.github.io/ThinkDSP/
3.97k stars 3.23k forks source link

Fix filename clash. Rename fb.csv to fb_1.csv. Rename FB.csv to FB_2.csv #77

Closed marksweiss closed 3 years ago

marksweiss commented 3 years ago

On OSX (and Windows too I believe), the fact that there is a file fb.csv and another file FB.csv cause git clone to return a warning and (much worse) only download fb.csv when cloning. FB.csv is not downloaded as part of the clone operation, leaving the project in an invalid state.

This PR fixes the issue by renaming the two files and fixing all source code references to either file. The renaming is as follows:

AllenDowney commented 3 years ago

Thanks!