Browse Source

Sort imports

master
Raphael Roberts 5 years ago
parent
commit
33ba1f1d17
  1. 6
      panera_shifts/login.py
  2. 3
      panera_shifts/oauth_required.py
  3. 1
      panera_shifts/saml_check.py

6
panera_shifts/login.py

@ -1,8 +1,10 @@
from lxml.html import fromstring as lxml_from_string
from urllib.parse import urljoin
import requests
from panera_shifts.saml_check import saml_check
from lxml.html import fromstring as lxml_from_string
from panera_shifts.fill_form import get_form_fields
from panera_shifts.saml_check import saml_check
PANERA_URL = "https://pantry.panerabread.com"

3
panera_shifts/oauth_required.py

@ -1,6 +1,7 @@
import datetime
import json
from panera_shifts.user import get_signed_in_user
import datetime
def get_bearer_token(session):

1
panera_shifts/saml_check.py

@ -1,4 +1,5 @@
from urllib.parse import urlparse
from lxml.html import fromstring as lxml_from_string
from panera_shifts.fill_form import get_form_fields

Loading…
Cancel
Save