Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Organise imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gythaogg committed Nov 30, 2023
1 parent 1effd47 commit c57ff41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apis_ontology/management/commands/update_zotero_data.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import logging
import os, requests
from django.core.management.base import BaseCommand
import requests, os
from requests.auth import HTTPBasicAuth
import os

import pandas as pd
from tqdm.auto import tqdm
import requests
from apis_ontology.models import ZoteroEntry
from django.core.management.base import BaseCommand
from tqdm.auto import tqdm

USER = os.environ.get("APIS_BIBSONOMY_USER")
KEY = os.environ.get("APIS_BIBSONOMY_PASSWORD")
Expand Down

0 comments on commit c57ff41

Please sign in to comment.