Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
philipdelorenzo committed Oct 24, 2024
1 parent e237bc8 commit 3f37b72
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.

import argparse

Expand Down
3 changes: 2 additions & 1 deletion src/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# Copyright (c) 2024, Philip De Lorenzo
# All rights reserved.


# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
class GHTokenError(Exception):
def __init__(self, message, errors={}):
# Call the base class constructor with the parameters it needs
Expand Down
2 changes: 1 addition & 1 deletion src/gh.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
import argparse
import json
import os
Expand Down
2 changes: 1 addition & 1 deletion src/gh_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
import json
import os
import subprocess # We will use subprocess to run the gh command to get the deployment pipelines
Expand Down
3 changes: 2 additions & 1 deletion src/helpers.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Copyright (c) 2024, Philip De Lorenzo
# All rights reserved.


# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
class Args:
def __init__(self):
self.current_repo = "philipdelorenzo/sync-action-status"
Expand Down
2 changes: 1 addition & 1 deletion src/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.

"""This python script will return the deployment pipelines, and ids for the SRE Deployments Repo -- @manscaped-dev/manscaped-sre-deployments
Expand Down
2 changes: 1 addition & 1 deletion src/test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
import unittest

from checks import check_gh_token, is_org, prerequisites, repo_owner_verification
Expand Down
2 changes: 1 addition & 1 deletion src/test_gh.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
import unittest

import requests
Expand Down
2 changes: 1 addition & 1 deletion src/test_gh_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
import unittest

import requests
Expand Down
2 changes: 1 addition & 1 deletion sync-action-status.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All rights reserved.

# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
import argparse
import os
import sys
Expand Down

0 comments on commit 3f37b72

Please sign in to comment.