Optimize imports

This commit is contained in:
Charlie Marsh 2022-10-14 14:42:48 -04:00
parent 2353a52be8
commit c59610906c
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,9 @@
//! Abstractions for NumPy-style docstrings. //! Abstractions for NumPy-style docstrings.
use std::collections::BTreeSet;
use once_cell::sync::Lazy;
use crate::check_ast::Checker; use crate::check_ast::Checker;
use crate::checks::{Check, CheckCode, CheckKind}; use crate::checks::{Check, CheckCode, CheckKind};
use crate::docstrings::helpers::range_for; use crate::docstrings::helpers::range_for;
@ -7,8 +11,6 @@ use crate::docstrings::sections::SectionContext;
use crate::docstrings::styles::SectionStyle; use crate::docstrings::styles::SectionStyle;
use crate::docstrings::types::Definition; use crate::docstrings::types::Definition;
use crate::docstrings::{helpers, sections}; use crate::docstrings::{helpers, sections};
use once_cell::sync::Lazy;
use std::collections::BTreeSet;
pub(crate) static LOWERCASE_NUMPY_SECTION_NAMES: Lazy<BTreeSet<&'static str>> = Lazy::new(|| { pub(crate) static LOWERCASE_NUMPY_SECTION_NAMES: Lazy<BTreeSet<&'static str>> = Lazy::new(|| {
BTreeSet::from([ BTreeSet::from([

View File

@ -1,4 +1,5 @@
#![allow(clippy::collapsible_if, clippy::collapsible_else_if)] #![allow(clippy::collapsible_if, clippy::collapsible_else_if)]
use std::path::Path; use std::path::Path;
use anyhow::Result; use anyhow::Result;