Skip to content

Commit

Permalink
make ruff happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jokester committed Apr 22, 2024
1 parent 412124c commit a2a8b12
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions app/exceptions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# ruff: noqa: F403
"""
所有API异常定义在此
"""
from .base import * # 100-999
from .auth import * # 1xxx
from .v_code import * # 2xxx
from .team import * # 3xxx
from .project import * # 4xxx
from .join_process import * # 5xxx
from .language import * # 6xxx
from .term import * # 7xxx
from .file import * # 8xxx
from .output import * # 9xxx
from .base import * # 100-999 # noqa: F403
from .auth import * # 1xxx # noqa: F403
from .v_code import * # 2xxx # noqa: F403
from .team import * # 3xxx # noqa: F403
from .project import * # 4xxx # noqa: F403
from .join_process import * # 5xxx # noqa: F403
from .language import * # 6xxx # noqa: F403
from .term import * # 7xxx # noqa: F403
from .file import * # 8xxx # noqa: F403
from .output import * # 9xxx # noqa: F403

self_vars = vars()

0 comments on commit a2a8b12

Please sign in to comment.