Skip to content

Commit

Permalink
badges
Browse files Browse the repository at this point in the history
  • Loading branch information
vcantarella committed Feb 5, 2024
1 parent 4a9eb2d commit f777cbb
Show file tree
Hide file tree
Showing 59 changed files with 27,508 additions and 85 deletions.
73 changes: 73 additions & 0 deletions reports/flake8/back.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 91 additions & 0 deletions reports/flake8/build.lib.hyvr.__init__.report.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<!DOCTYPE html>
<html>
<head>
<title>flake8 violations: build/lib/hyvr/__init__.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-1"></div>
<div id="page">
<p id="srclink">
<a title="View full annotated source"
href="build.lib.hyvr.__init__.source.html">
<img src="file.svg" alt="&#x2261;">
</a></p>
<h1>
<a href="index.html">
<img src="back.svg" alt="&#x2B05;">
build/lib/hyvr/__init__.py
</a>
</h1>

<ul id="index">

<li>
<a data-code="F401">
<span class="count sev-1">
3
</span>
<strong>F401:</strong> '.objects.trough.trough' imported but unused

(and 2 similar)

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

<p>'.objects.trough.trough' imported but unused:</p>

<a href="build.lib.hyvr.__init__.source.html#l2">
<tt><i>2</i> <span class="kn">from</span> <span class="nn">.objects.trough</span> <span class="kn">import</span> <span class="n">trough</span></tt>
</a>
</li><li>

<p>'.objects.sheet.sheet' imported but unused:</p>

<a href="build.lib.hyvr.__init__.source.html#l3">
<tt><i>3</i> <span class="kn">from</span> <span class="nn">.objects.sheet</span> <span class="kn">import</span> <span class="n">sheet</span></tt>
</a>
</li><li>

<p>'.objects.channel.channel' imported but unused:</p>

<a href="build.lib.hyvr.__init__.source.html#l4">
<tt><i>4</i> <span class="kn">from</span> <span class="nn">.objects.channel</span> <span class="kn">import</span> <span class="n">channel</span></tt>
</a>
</li>
</ul>
</li>

</ul>
</div>
</body>
</html>
62 changes: 62 additions & 0 deletions reports/flake8/build.lib.hyvr.__init__.source.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<title>build/lib/hyvr/__init__.py - flake8 annotated source</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-1"></div>
<div id="page">
<h1>
<a href="build.lib.hyvr.__init__.report.html">
<img src="back.svg" alt="&#x2B05;">
build/lib/hyvr/__init__.py source
</a>
</h1>

<div id="doc">
<div id="l1"
class="code sev- "><tt><i>1</i> <span class="n">__version__</span> <span class="o">=</span> <span class="s2">&quot;0.1.0b&quot;</span></tt>
</div>
<div id="l2"
class="code sev-1 le">
<ul class="violations">

<li>
<span class="count sev-1">
F401
</span>
'.objects.trough.trough' imported but unused</li>

</ul><tt><i>2</i> <span class="kn">from</span> <span class="nn">.objects.trough</span> <span class="kn">import</span> <span class="n">trough</span></tt>
</div>
<div id="l3"
class="code sev-1 le">
<ul class="violations">

<li>
<span class="count sev-1">
F401
</span>
'.objects.sheet.sheet' imported but unused</li>

</ul><tt><i>3</i> <span class="kn">from</span> <span class="nn">.objects.sheet</span> <span class="kn">import</span> <span class="n">sheet</span></tt>
</div>
<div id="l4"
class="code sev-1 le">
<ul class="violations">

<li>
<span class="count sev-1">
F401
</span>
'.objects.channel.channel' imported but unused</li>

</ul><tt><i>4</i> <span class="kn">from</span> <span class="nn">.objects.channel</span> <span class="kn">import</span> <span class="n">channel</span></tt>
</div>

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

0 comments on commit f777cbb

Please sign in to comment.