Skip to content

Commit

Permalink
pre-commit formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCallahan committed Apr 17, 2024
1 parent ec3d7f6 commit 4b1a4a0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: debug-statements
1 change: 1 addition & 0 deletions airgun/browser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Tools to help getting selenium and widgetastic browser instance to run UI
tests.
"""

import base64
from contextlib import contextmanager
from datetime import datetime
Expand Down
1 change: 1 addition & 0 deletions airgun/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Exceptions raised by airgun"""

from selenium.common.exceptions import InvalidElementStateException
from widgetastic.exceptions import * # noqa: F403

Expand Down
1 change: 1 addition & 0 deletions airgun/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
pytest_plugins = ["airgun.fixtures"]
"""

import pytest

from airgun.session import Session
Expand Down
1 change: 1 addition & 0 deletions airgun/navigation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""AirGun's implementation of base navigation and navigate steps."""

from cached_property import cached_property
import navmazing
from selenium.common.exceptions import NoSuchElementException
Expand Down
1 change: 1 addition & 0 deletions airgun/session.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Session controller which manages UI session"""

from datetime import datetime
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
http://sphinx-doc.org/config.html
"""

import os
import sys

Expand Down

0 comments on commit 4b1a4a0

Please sign in to comment.