Spaces:
Sleeping
Sleeping
agharsallah commited on
Commit ·
f86da75
1
Parent(s): b663bf4
adding git ignore
Browse files- .gitignore +1 -0
- app.py +2 -1
.gitignore
CHANGED
|
@@ -118,3 +118,4 @@ dmypy.json
|
|
| 118 |
|
| 119 |
# Cython debug symbols
|
| 120 |
cython_debug/
|
|
|
|
|
|
| 118 |
|
| 119 |
# Cython debug symbols
|
| 120 |
cython_debug/
|
| 121 |
+
local-docs
|
app.py
CHANGED
|
@@ -2,7 +2,8 @@ import gradio as gr
|
|
| 2 |
|
| 3 |
|
| 4 |
def letter_counter(word, letter):
|
| 5 |
-
"""
|
|
|
|
| 6 |
|
| 7 |
Args:
|
| 8 |
word: The word or phrase to analyze
|
|
|
|
| 2 |
|
| 3 |
|
| 4 |
def letter_counter(word, letter):
|
| 5 |
+
"""
|
| 6 |
+
Count the occurrences of a specific letter in a word.
|
| 7 |
|
| 8 |
Args:
|
| 9 |
word: The word or phrase to analyze
|