Showing 12 of 12 total issues
Function write
has a Cognitive Complexity of 102 (exceeds 5 allowed). Consider refactoring. Open
def write(
data,
include_media=settings.FREEZE_INCLUDE_MEDIA,
include_static=settings.FREEZE_INCLUDE_STATIC,
html_in_memory=False,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function scan
has a Cognitive Complexity of 60 (exceeds 5 allowed). Consider refactoring. Open
def scan(
site_url=settings.FREEZE_SITE_URL,
base_url=settings.FREEZE_BASE_URL,
relative_urls=settings.FREEZE_RELATIVE_URLS,
local_urls=settings.FREEZE_LOCAL_URLS,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function download_static_site
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
def download_static_site(request):
if request.user and request.user.is_staff and request.user.is_active:
try:
include_media_get = request.GET.get("include_media")
include_media_default = settings.FREEZE_INCLUDE_MEDIA
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function parse_html_urls
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
def parse_html_urls(
html,
site_url=settings.FREEZE_SITE_URL,
base_url="/",
media_urls=False,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function parse_sitemap_urls
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
def parse_sitemap_urls(
site_url=settings.FREEZE_SITE_URL,
request_headers=settings.FREEZE_REQUEST_HEADERS,
):
if site_url is None:
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function scan
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
def scan(
Avoid deeply nested control flow statements. Open
if not os.path.exists(file_dst_dirname):
os.makedirs(file_dst_dirname)
Avoid deeply nested control flow statements. Open
if root.find(static_dir_path) == 0:
include_dir = True
break
else:
Avoid deeply nested control flow statements. Open
if root.find(media_dir_path) == 0:
include_dir = True
break
else:
Function write
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def write(
Avoid deeply nested control flow statements. Open
if not os.path.exists(file_dst_dirname):
os.makedirs(file_dst_dirname)
Function parse_html_urls
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def parse_html_urls(