Skip to content

Commit

Permalink
Bump ruff from 0.2.2 to 0.3.0 (#318)
Browse files Browse the repository at this point in the history
* Bump ruff from 0.2.2 to 0.3.0

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.2.2 to 0.3.0.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.2.2...v0.3.0)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix format

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maciej Bieniek <[email protected]>
  • Loading branch information
dependabot[bot] and bieniu authored Mar 4, 2024
1 parent d56e7b0 commit b32671f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Example for GIOS."""

import asyncio
import logging

Expand Down
1 change: 1 addition & 0 deletions gios/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Python wrapper for getting air quality data from GIOS."""

import logging
from contextlib import suppress
from http import HTTPStatus
Expand Down
1 change: 1 addition & 0 deletions gios/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for GIOS library."""

from typing import Final

ATTR_AQI: Final[str] = "AQI"
Expand Down
1 change: 1 addition & 0 deletions gios/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Type definitions for GIOS."""

from dataclasses import dataclass


Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ pytest-cov==4.1.0
pytest-error-for-skips==2.0.2
pytest-timeout==2.2.0
pytest==8.1.0
ruff==0.2.2
ruff==0.3.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Setup module for gios."""

from pathlib import Path

from setuptools import setup
Expand Down
1 change: 1 addition & 0 deletions tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for gios package."""

import json

import aiohttp
Expand Down

0 comments on commit b32671f

Please sign in to comment.