mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-09 22:34:18 -07:00
Issue 105: Configure and run black
and other pre-commit hooks (clean branch) (#1962)
* Configure and run `black` and other pre-commit hooks Co-authored-by: matt bowen <matthew.r.bowen@omb.eop.gov>
This commit is contained in:
parent
baa34ec038
commit
6e6223cd5e
162 changed files with 716 additions and 602 deletions
|
@ -1,26 +1,24 @@
|
|||
from typing import List, Union
|
||||
import datetime
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
import sys
|
||||
import uuid
|
||||
import zipfile
|
||||
from pathlib import Path
|
||||
from marshmallow import ValidationError
|
||||
import urllib3
|
||||
from typing import List
|
||||
from typing import Union
|
||||
|
||||
import requests
|
||||
import urllib3
|
||||
import yaml
|
||||
from marshmallow_dataclass import class_schema
|
||||
|
||||
from data_pipeline.config import settings
|
||||
from data_pipeline.content.schemas.download_schemas import (
|
||||
CSVConfig,
|
||||
CodebookConfig,
|
||||
ExcelConfig,
|
||||
)
|
||||
|
||||
from data_pipeline.content.schemas.download_schemas import CodebookConfig
|
||||
from data_pipeline.content.schemas.download_schemas import CSVConfig
|
||||
from data_pipeline.content.schemas.download_schemas import ExcelConfig
|
||||
from marshmallow import ValidationError
|
||||
from marshmallow_dataclass import class_schema
|
||||
|
||||
## zlib is not available on all systems
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue