Skip to content

Commit

Permalink
Merge pull request #13 from rahulbanerjee26/remove-default-values
Browse files Browse the repository at this point in the history
Removed default values for some sections
  • Loading branch information
rahulbanerjee26 authored Oct 13, 2021
2 parents 6538776 + a60cfdb commit dede753
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
col1 , col2, col3 = st.beta_columns(3)

with col1:
name = st.text_input("Name",value = "Rahul")
twitter = st.text_input("Twitter", value = "rahulbanerjee99")
name = st.text_input("Name")
twitter = st.text_input("Twitter")

with col2:
github = st.text_input("Github UserID",value="rahulbanerjee26")
github = st.text_input("Github UserID")
portfolio = st.text_input("Portfolio")

with col3:
linkedin = st.text_input("Linkedin userID",value='rahulbanerjee2699')
linkedin = st.text_input("Linkedin userID")
medium = st.text_input("Medium URL")

p1_value = '''My Blog, Github Project'''
Expand All @@ -68,7 +68,7 @@
p4 = st.text_area("talk to me about",value = p4_value)

user_skills = st.multiselect("Select Skills",options=skills,default=['python','reactjs','javascript','scikit','c','cpp','sqlite','pytorch'])
waka_userid = st.text_input("Wakatime User ID",value='rahulbanerjee26')
waka_userid = st.text_input("Wakatime User ID")
e1 = st.beta_expander("What is Wakatime and how do I get my user ID?")
with e1:
st.text('''
Expand All @@ -85,7 +85,7 @@
st.markdown('<br>' , unsafe_allow_html = True)
e2 = st.beta_expander("How to display my latest blog posts?")
with e2:
feed_url = st.text_input("URL to your feed", value = 'https://realpythonproject.com/feeed')
feed_url = st.text_input("URL to your feed")
st.markdown(f'''
- Ensure checkbox for blog in sidebar is selected
- After you update the above feed url, give it a minute and Download the below yml file
Expand Down

0 comments on commit dede753

Please sign in to comment.