Skip to content

Commit

Permalink
Merge branch 'main' into add_encoding_arg_to_copy_s3_func
Browse files Browse the repository at this point in the history
  • Loading branch information
sharinetmc authored May 20, 2024
2 parents 0fb5ab3 + 66f288e commit d58a0a4
Show file tree
Hide file tree
Showing 23 changed files with 463 additions and 588 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-linux-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
run: |
# E203 and W503 don't work well with black
flake8 parsons/ test/ useful_resources/
black --check parsons/ test/ useful_resources/
black --diff parsons/ test/ useful_resources/
2 changes: 1 addition & 1 deletion .github/workflows/tests-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
run: |
# E203 and W503 don't work well with black
flake8 parsons/ test/ useful_resources/
black --check parsons/ test/ useful_resources/
black --diff parsons/ test/ useful_resources/
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ repos:
'--max-line-length=100'
]
- repo: https://github.com/psf/black
rev: 24.2.0
rev: 24.3.0
hooks:
- id: black
69 changes: 0 additions & 69 deletions docs/bluelink.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ Indices and tables
azure
bill_com
bloomerang
bluelink
box
braintree
capitolcanary
Expand Down
1 change: 0 additions & 1 deletion parsons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
("parsons.azure.azure_blob_storage", "AzureBlobStorage"),
("parsons.bill_com.bill_com", "BillCom"),
("parsons.bloomerang.bloomerang", "Bloomerang"),
("parsons.bluelink", "Bluelink"),
("parsons.box.box", "Box"),
("parsons.braintree.braintree", "Braintree"),
("parsons.capitol_canary.capitol_canary", "CapitolCanary"),
Expand Down
2 changes: 2 additions & 0 deletions parsons/action_kit/action_kit.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ def update_user(self, user_id, **kwargs):
resp = self.conn.patch(self._base_endpoint("user", user_id), data=json.dumps(kwargs))
logger.info(f"{resp.status_code}: {user_id}")

return resp

def get_event(self, event_id):
"""Get an event.
Expand Down
21 changes: 0 additions & 21 deletions parsons/bluelink/__init__.py

This file was deleted.

84 changes: 0 additions & 84 deletions parsons/bluelink/bluelink.py

This file was deleted.

Loading

0 comments on commit d58a0a4

Please sign in to comment.