Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
**/__pycache__
*.pyc
venv
env
.idea
backup.sqlite3
oc-lettings-site_old.sqlite3
flake8-report
73 changes: 73 additions & 0 deletions flake8-report/back.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 64 additions & 0 deletions flake8-report/file.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions flake8-report/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>flake8 violations</title>
<meta http-equiv="Content-Type" value="text/html; charset=UTF-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="masthead" class="sev-2"></div>
<div id="page">
<h1>flake8 violations</h1>
<p id="versions">Generated on 2026-05-18 12:22
with mccabe: 0.6.1, pycodestyle: 2.5.0, pyflakes: 2.1.1
</p>
<ul id="index">

<li>
<a href="oc_lettings_site.views.report.html">
<span class="count sev-2">
17
</span>
oc_lettings_site\views.py
</a>
</li>

<li>
<a href="oc_lettings_site.settings.report.html">
<span class="count sev-2">
1
</span>
oc_lettings_site\settings.py
</a>
</li>

</ul>
</div>
</body>
</html>
73 changes: 73 additions & 0 deletions flake8-report/oc_lettings_site.settings.report.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html>
<head>
<title>flake8 violations: oc_lettings_site\settings.py</title>
<meta http-equiv="Content-Type" value="text/html; charset=UTF-8">
<link rel="stylesheet" href="styles.css">
<script>
function bindHandler(link) {
var code = link.getAttribute('data-code');
var key = location.pathname + '#' + code;

var ul = link.parentNode.querySelector('.details');
if (sessionStorage[key] != 'open') {
ul.style.display = 'none';
}
link.addEventListener('click', function (event) {
if (!ul.style.display || ul.style.display == 'none') {
ul.style.display = 'block';
sessionStorage[key] = 'open';
} else {
ul.style.display = 'none';
sessionStorage[key] = 'closed';
}
});
}

window.addEventListener('DOMContentLoaded', function () {
var links = document.querySelectorAll('#index > li > a');
for (var i = 0; i < links.length; i++) {
bindHandler(links[i]);
}
});
</script>
</head>
<body>
<div id="masthead" class="sev-2"></div>
<div id="page">
<p id="srclink">
<a title="View full annotated source"
href="oc_lettings_site.settings.source.html">
<img src="file.svg" alt="&#x2261;">
</a></p>
<h1>
<a href="index.html">
<img src="back.svg" alt="&#x2B05;">
oc_lettings_site\settings.py
</a>
</h1>

<ul id="index">

<li>
<a data-code="E231">
<span class="count sev-2">
1
</span>
<strong>E231:</strong> missing whitespace after ','

</a>
<ul class="details">
<li>

<a href="oc_lettings_site.settings.source.html#l114">
<tt><i>114</i> <span class="n">STATICFILES_DIRS</span> <span class="o">=</span> <span class="p">[</span><span class="n">BASE_DIR</span> <span class="o">/</span> <span class="s2">&quot;static&quot;</span><span class="p">,]</span></tt>
</a>
</li>
</ul>
</li>

</ul>
</div>
</body>
</html>
Loading