Skip to content

Commit

Permalink
lint: isort and black disagree
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshultz committed Sep 23, 2023
1 parent aa6c89c commit 3ce74fa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rawl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ def get_name(self, pk):
from abc import ABC
from collections.abc import KeysView, ValuesView
from datetime import datetime
# EnumMeta is an alias to EnumType as of 3.11 - to be depreciated
from enum import EnumMeta, IntEnum
from enum import (
EnumMeta, # EnumMeta is an alias to EnumType as of 3.11 - to be depreciated
IntEnum,
)
from json import JSONEncoder
from types import TracebackType
from typing import Any, Dict, Iterator, List, Optional, Type, TypeVar, Union
Expand Down

0 comments on commit 3ce74fa

Please sign in to comment.