Skip to content

Commit

Permalink
minor tweaks(docs, typos)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansurf committed Jul 29, 2024
1 parent d4c5853 commit 103fdbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/cheat_sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ When developing, these commands may come in handy:
| `make send_email` | Runs `send_email.py` |
| `make lint` | Runs the ruff linter |
| `make format` | Runs the ruff formatter |
| `make clean` | Cleans up files generated during testing (`.coverage`, `pytest_cache`, etc.) |


## [Git](https://education.github.com/git-cheat-sheet-education.pdf)
Expand Down
1 change: 1 addition & 0 deletions src/dev_streamlit.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
report_dict, gpt_response, lat, long = get_report

# Displays the map
# TODO: Configure map to only show nearby surf spots based on the lat/long
if map:
map_data = sl_help.map_data(lat, long)
st_folium(map_data, width=725)
Expand Down
2 changes: 1 addition & 1 deletion src/streamlit_helper.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Helper functions for the streamlit frontent
Helper functions for the streamlit frontend
"""

import sys
Expand Down

1 comment on commit 103fdbb

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src
   __init__.py00100% 
   api.py101694%30, 48, 70–71, 103–104
   art.py9367%24–25, 37
   cli.py25580%26, 37, 55–56, 60
   dev_streamlit.py37370%1–86
   gpt.py10640%16–21, 32–45
   helper.py1575863%53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 91, 102–106, 132, 134, 136, 145–153, 165, 178–179, 197–199, 209, 211–212, 235–236, 274–284, 291–299
   send_email.py24240%5–48
   server.py41410%5–82
   settings.py220100% 
   streamlit_helper.py33330%5–90
TOTAL45921354% 

Tests Skipped Failures Errors Time
9 0 💤 0 ❌ 0 🔥 17.833s ⏱️

Please sign in to comment.