Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 686dbc9

Browse files
committed
Update copyright for 2023
1 parent b784a50 commit 686dbc9

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Developer Innovations, LLC
3+
Copyright (c) 2022-2023 Developer Innovations, LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/pytest_unflakable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Unflakable plugin for PyTest."""
22

3-
# Copyright (c) 2022 Developer Innovations, LLC
3+
# Copyright (c) 2022-2023 Developer Innovations, LLC
44

55
import argparse
66

src/pytest_unflakable/_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Unflakable API."""
22

3-
# Copyright (c) 2022 Developer Innovations, LLC
3+
# Copyright (c) 2022-2023 Developer Innovations, LLC
44

55
from typing import List, Optional, TYPE_CHECKING
66

src/pytest_unflakable/_git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022 Developer Innovations, LLC
1+
# Copyright (c) 2022-2023 Developer Innovations, LLC
22
import logging
33
from typing import Optional, List
44
from subprocess import run

src/pytest_unflakable/_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Plugin implementation."""
2-
# Copyright (c) 2022 Developer Innovations, LLC
2+
# Copyright (c) 2022-2023 Developer Innovations, LLC
33

44
from enum import Enum
55
from pathlib import Path

tests/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tests for pytest_unflakable plugin."""
22

3-
# Copyright (c) 2022 Developer Innovations, LLC
3+
# Copyright (c) 2022-2023 Developer Innovations, LLC
44
import subprocess
55
from enum import Enum
66
from typing import List, Optional, Tuple, Dict, Iterable, cast, Callable, Sequence, TYPE_CHECKING

tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) 2022-2023 Developer Innovations, LLC
2+
13
from typing import Generator
24
from unittest.mock import patch
35

tests/test_unflakable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tests for pytest_unflakable plugin."""
22

3-
# Copyright (c) 2022 Developer Innovations, LLC
3+
# Copyright (c) 2022-2023 Developer Innovations, LLC
44

55
import pytest
66
import requests_mock

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,4 @@ max_line_length = 100
8282
inline-quotes = single
8383

8484
[pycodestyle]
85-
aggressive = 2
86-
in-place = true
87-
max_line_length = 100
85+
max-line-length = 100

0 commit comments

Comments
 (0)