Skip to content
Closed
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: 1 addition & 1 deletion loudhailer/backends/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from abc import ABC, abstractmethod

Expand Down
2 changes: 1 addition & 1 deletion loudhailer/backends/rabbitmq.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion loudhailer/backends/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from urllib.parse import urlparse, urlunparse

Expand Down
2 changes: 1 addition & 1 deletion loudhailer/dataclasses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from dataclasses import dataclass
from typing import Any, Optional
Expand Down
2 changes: 1 addition & 1 deletion loudhailer/ext/channels.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import functools
import inspect
Expand Down
2 changes: 1 addition & 1 deletion loudhailer/loudhailer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import json
Expand Down
2 changes: 1 addition & 1 deletion loudhailer/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import string
import secrets
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import shlex
import subprocess
Expand Down
2 changes: 1 addition & 1 deletion tests/loudhailer/backends/test_rabbitmq.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion tests/loudhailer/backends/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/loudhailer/ext/test_channels.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import logging

Expand Down
2 changes: 1 addition & 1 deletion tests/loudhailer/test_loudhailer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio

Expand Down
2 changes: 1 addition & 1 deletion tests/loudhailer/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Loudhailer.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from loudhailer.utils import rand_string

Expand Down
Loading