mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-08-19 04:47:20 +02:00
Compare commits
4 Commits
46058c8222
...
f7b8a40b28
Author | SHA1 | Date | |
---|---|---|---|
f7b8a40b28 | |||
857b9b4a09 | |||
9aa1b3ddb6 | |||
4a292cc08d |
@ -3,6 +3,7 @@ ci:
|
||||
# the frequency of unnecessary PRs.
|
||||
# https://github.com/pre-commit-ci/issues/issues/83
|
||||
autoupdate_schedule: quarterly
|
||||
skip: [pylint]
|
||||
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
@ -10,6 +11,7 @@ repos:
|
||||
hooks:
|
||||
- id: check-added-large-files
|
||||
- id: check-case-conflict
|
||||
- id: check-yaml
|
||||
- id: check-executables-have-shebangs
|
||||
- id: check-shebang-scripts-are-executable
|
||||
- id: destroyed-symlinks
|
||||
@ -24,13 +26,30 @@ repos:
|
||||
- id: doctoc
|
||||
# https://github.com/Mikaela/gist/blob/master/doctoc.txt
|
||||
args: [--update-only]
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: "v1.3.0"
|
||||
hooks:
|
||||
- id: mypy
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: "v3.0.0-alpha.9-for-vscode"
|
||||
hooks:
|
||||
- id: prettier
|
||||
exclude_types: [python, pyi, jupyter]
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 23.3.0
|
||||
hooks:
|
||||
- id: black
|
||||
#- id: black-jupyter
|
||||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
||||
rev: "2.7.1"
|
||||
hooks:
|
||||
- id: editorconfig-checker
|
||||
alias: ec
|
||||
args: [-disable-max-line-length]
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: pylint
|
||||
name: pylint
|
||||
entry: pylint
|
||||
language: system
|
||||
types_or: [python, pyi]
|
||||
|
@ -4,3 +4,6 @@ root = false
|
||||
# https://peps.python.org/pep-0008/#indentation
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
#max_line_length = 79
|
||||
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
|
||||
max_line_length = 88
|
||||
|
@ -9,7 +9,7 @@ except IndexError as noarg:
|
||||
|
||||
try:
|
||||
for i in range(int(wantedCount)):
|
||||
print(secrets.randbelow(10),end="")
|
||||
print(secrets.randbelow(10), end="")
|
||||
except NameError as noWantedCount:
|
||||
print()
|
||||
print()
|
||||
|
@ -1,17 +1,23 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
'''
|
||||
"""
|
||||
This script asks for a SSID name, counts it and tells whether it's of valid
|
||||
length
|
||||
'''
|
||||
"""
|
||||
|
||||
# Request input or assume "test" on empty.
|
||||
givenssid = str(input("Please enter the SSID you are thinking of (preferably 26 chars to fit _nomap): ") or "test")
|
||||
givenssid = str(
|
||||
input(
|
||||
"Please enter the SSID you are thinking of (preferably 26 chars to fit _nomap): "
|
||||
)
|
||||
or "test"
|
||||
)
|
||||
|
||||
# Ensure it's UTF-8 and store the size. E.g. åäö are longer than oao
|
||||
# TODO: make this a function too
|
||||
givenssidlen = len(givenssid.encode("utf8"))
|
||||
|
||||
|
||||
# Checking the SSID length is done twice, so thus a function
|
||||
def checkssidlen(givenssidlen):
|
||||
# 32 bytes should be the maximum SSID length
|
||||
@ -20,6 +26,7 @@ def checkssidlen(givenssidlen):
|
||||
else:
|
||||
print(givenssid, "is", givenssidlen, "to long, please select a different SSID")
|
||||
|
||||
|
||||
# Checking the SSID without _nomap
|
||||
checkssidlen(givenssidlen)
|
||||
# TODO: make this a function too
|
||||
|
Loading…
x
Reference in New Issue
Block a user