Skip to content

Commit

Permalink
sort imports with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
JessyBarrette committed Nov 1, 2024
1 parent 7c6efa5 commit 4c6f7d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 4 additions & 5 deletions firebase_to_xml/firebase_to_xml/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@
"""

import argparse
import os
import traceback
from pathlib import Path
import os

import yaml
from dotenv import load_dotenv
from metadata_xml.template_functions import metadata_to_xml
from loguru import logger
from tqdm import tqdm

from get_records_from_firebase import get_records_from_firebase
from loguru import logger
from metadata_xml.template_functions import metadata_to_xml
from record_json_to_yaml import record_json_to_yaml
from tqdm import tqdm


def get_filename(record):
Expand Down
3 changes: 2 additions & 1 deletion firebase_to_xml/firebase_to_xml/record_json_to_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
"""

import json
from firebase_to_xml.scrubbers import scrub_dict, scrub_keys, remove_nones
import os

from firebase_to_xml.scrubbers import remove_nones, scrub_dict, scrub_keys

dir = os.path.dirname(os.path.realpath(__file__))


Expand Down

0 comments on commit 4c6f7d0

Please sign in to comment.