Skip to content

Commit

Permalink
fix: linter errors based on superlinter rules!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Mar 6, 2024
1 parent 5f218f0 commit 0443031
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

import pandas as pd
import streamlit as st
from utils.mongo import MongoSingleton
from utils.process_guild_data import process_guild_data
from streamlit_authenticator import Authenticate
import yaml
from utils.mongo import MongoSingleton
from utils.process_guild_data import process_guild_data
from yaml.loader import SafeLoader


Expand Down Expand Up @@ -55,7 +55,7 @@ def load_guilds_latest_date_df():
st.write(f"Welcome *{name}*")
# st.title('Some content')
load_guilds_latest_date_df()
elif authentication_status == False:
elif authentication_status is False:
st.error("Username/password is incorrect")
elif authentication_status == None:
elif authentication_status is None:
st.warning("Please enter your username and password")

0 comments on commit 0443031

Please sign in to comment.