Skip to content

Commit

Permalink
PAPP-34725 - fixes from pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mposluszny-splunk committed Sep 27, 2024
1 parent fb07d7a commit b22922d
Show file tree
Hide file tree
Showing 8 changed files with 137 additions and 116 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
20 changes: 18 additions & 2 deletions bigfix.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,5 +860,21 @@
},
"versions": "EQ(*)"
}
]
}
],
"pip_dependencies": {
"wheel": [
{
"module": "lxml",
"input_file": "wheels/py36/lxml-4.9.2-cp36-cp36m-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl"
}
]
},
"pip39_dependencies": {
"wheel": [
{
"module": "lxml",
"input_file": "wheels/py39/lxml-4.9.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl"
}
]
}
}
216 changes: 109 additions & 107 deletions bigfix_connector.py

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions bigfix_consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied. See the License for the specific language governing permissions
# and limitations under the License.
BIGFIX_SITE_TYPE_DICT = {
"ExternalSite": "external",
"CustomSite": "custom",
"OperatorSite": "operator",
"ActionSite": "action"}
BIGFIX_SITE_TYPE_DICT = {"ExternalSite": "external", "CustomSite": "custom", "OperatorSite": "operator", "ActionSite": "action"}
BIGFIX_CONNECTING_PROGRESS = "Connecting to BigFix"
EMPTY_RESPONSE = "Empty response and no information in the header"
CANNOT_PARSE_ERROR = "Cannot parse error details"
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[tool.black]
line-length = 145
target-version = ['py39']
verbose = true

[tool.isort]
line_length = 145
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[flake8]
max-line-length = 145
max-complexity = 28
extend-ignore = F403,E128,E126,E111,E121,E127,E731,E201,E202,F405,E722,D,W292
extend-ignore = F403,E128,E126,E121,E127,E731,E201,E202,E203,E701,F405,E722,D

[isort]
line_length = 145
Binary file not shown.
Binary file not shown.

0 comments on commit b22922d

Please sign in to comment.