Skip to content

Commit

Permalink
Updates for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
CLiX-1 committed Jan 28, 2025
1 parent 8c2a35b commit fcd5f7e
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions m365/agent_based/m365_group_based_licensing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -73,7 +73,7 @@ def discover_m365_group_based_licensing(section: Section) -> DiscoveryResult:

def check_m365_group_based_licensing(section: Section) -> CheckResult:
groups = section
if groups is None:
if not groups:
yield Result(
state=State.OK,
summary="No groups with errors",
Expand Down
2 changes: 1 addition & 1 deletion m365/agent_based/m365_licenses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/agent_based/m365_service_health.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/graphing/m365_licenses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/graphing/m365_service_health.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/libexec/agent_m365
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/rulesets/m365.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/rulesets/m365_licenses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion m365/rulesets/m365_service_health.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions m365/server_side_calls/m365.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-

# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
# Copyright (C) 2024, 2025 Christopher Pommer <cp.software@outlook.de>

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand All @@ -24,7 +24,7 @@


from pydantic import BaseModel
from typing import Optional, Iterator, List
from typing import Iterator, List, Optional

from cmk.server_side_calls.v1 import (
EnvProxy,
Expand Down

0 comments on commit fcd5f7e

Please sign in to comment.