Skip to content

Lint using Ruff #1563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .isort.cfg

This file was deleted.

7 changes: 2 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ repos:
- id: pyupgrade
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.4.10
rev: v0.5.0
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
hooks:
- id: flake8
7 changes: 0 additions & 7 deletions bin/autolinter

This file was deleted.

3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys

import sphinx_graphene_theme

Expand All @@ -22,8 +23,6 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys

sys.path.insert(0, os.path.abspath(".."))

Expand Down
2 changes: 1 addition & 1 deletion graphene/pyutils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ def get_git_changeset():
)
timestamp = git_log.communicate()[0]
timestamp = datetime.datetime.utcfromtimestamp(int(timestamp))
except:
except Exception:
return None
return timestamp.strftime("%Y%m%d%H%M%S")
2 changes: 1 addition & 1 deletion graphene/relay/id_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class BaseGlobalIDType:
Base class that define the required attributes/method for a type.
"""

graphene_type = ID # type: Type[BaseType]
graphene_type: Type[BaseType] = ID

@classmethod
def resolve_global_id(cls, info, global_id):
Expand Down
1 change: 0 additions & 1 deletion graphene/types/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# flake8: noqa
from graphql import GraphQLResolveInfo as ResolveInfo

from .argument import Argument
Expand Down
12 changes: 6 additions & 6 deletions graphene/types/base.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
from typing import Type
from typing import Type, Optional

from ..utils.subclass_with_meta import SubclassWithMeta, SubclassWithMeta_Meta
from ..utils.trim_docstring import trim_docstring


class BaseOptions:
name = None # type: str
description = None # type: str
name: Optional[str] = None
description: Optional[str] = None

_frozen = False # type: bool
_frozen: bool = False

def __init__(self, class_type):
self.class_type = class_type # type: Type
def __init__(self, class_type: Type):
self.class_type: Type = class_type

def freeze(self):
self._frozen = True
Expand Down
3 changes: 1 addition & 2 deletions graphene/types/scalars.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ class Float(Scalar):
"""

@staticmethod
def coerce_float(value):
# type: (Any) -> float
def coerce_float(value: Any) -> float:
try:
return float(value)
except ValueError:
Expand Down
4 changes: 2 additions & 2 deletions graphene/utils/dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from collections.abc import Iterable
from functools import partial

from typing import List # flake8: noqa
from typing import List

Loader = namedtuple("Loader", "key,future")

Expand Down Expand Up @@ -62,7 +62,7 @@ def __init__(
self.get_cache_key = get_cache_key or (lambda x: x)

self._cache = cache_map if cache_map is not None else {}
self._queue = [] # type: List[Loader]
self._queue: List[Loader] = []

@property
def loop(self):
Expand Down
11 changes: 0 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
[flake8]
exclude = setup.py,docs/*,*/examples/*,graphene/pyutils/*,tests
max-line-length = 120

# This is a specific ignore for Black+Flake8
# source: https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#id1
extend-ignore = E203

[coverage:run]
omit = graphene/pyutils/*,*/tests/*,graphene/types/scalars.py

[isort]
known_first_party=graphene

[bdist_wheel]
universal=1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run_tests(self):
"coveralls>=4,<5",
]

dev_requires = ["ruff==0.4.10", "flake8>=4,<5"] + tests_require
dev_requires = ["ruff==0.5.0"] + tests_require

setup(
name="graphene",
Expand Down
Loading