Skip to content

Commit

Permalink
Merge branch 'broked' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
byteface committed Nov 20, 2021
2 parents 1d07a03 + 6536967 commit 187bf93
Show file tree
Hide file tree
Showing 79 changed files with 6,816 additions and 7,433 deletions.
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/CDN.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/autodocs.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/cmd.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/constants.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/dQuery.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/dom.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/events.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/html.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/javascript.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/style.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/terminal.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/utils.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/webapi.doctree
Binary file not shown.
65 changes: 33 additions & 32 deletions docs/_build/html/_modules/domonic/CDN.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/_build/html/_modules/domonic/JSON.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>domonic.JSON &#8212; domonic 0.6.9 documentation</title>
<title>domonic.JSON &#8212; domonic 0.7.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css" />
<script data-url_root="../../" id="documentation_options" src="../../_static/documentation_options.js"></script>
Expand Down Expand Up @@ -68,7 +68,7 @@ <h1>Source code for domonic.JSON</h1><div class="highlight"><pre>
<span class="k">return</span> <span class="n">data</span>

<span class="nd">@staticmethod</span>
<span class="k">def</span> <span class="nf">parse</span><span class="p">(</span><span class="n">json_string</span><span class="p">):</span>
<span class="k">def</span> <span class="nf">parse</span><span class="p">(</span><span class="n">json_string</span><span class="p">:</span> <span class="nb">str</span><span class="p">):</span>
<span class="k">return</span> <span class="n">json</span><span class="o">.</span><span class="n">loads</span><span class="p">(</span><span class="n">json_string</span><span class="p">)</span>

<span class="nd">@staticmethod</span>
Expand Down Expand Up @@ -208,7 +208,7 @@ <h1>Source code for domonic.JSON</h1><div class="highlight"><pre>
<span class="c1"># def purify # remove all the data leaving just the data structure/schema</span>

<span class="nd">@staticmethod</span>
<span class="k">def</span> <span class="nf">is_JSON</span><span class="p">(</span><span class="n">json</span><span class="p">:</span> <span class="nb">str</span><span class="p">):</span>
<span class="k">def</span> <span class="nf">is_JSON</span><span class="p">(</span><span class="n">json</span><span class="p">:</span> <span class="nb">str</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="nb">bool</span><span class="p">:</span>
<span class="k">if</span> <span class="nb">type</span><span class="p">(</span><span class="n">json</span><span class="p">)</span> <span class="o">!=</span> <span class="nb">str</span><span class="p">:</span>
<span class="k">return</span> <span class="kc">False</span>

Expand Down
4 changes: 2 additions & 2 deletions docs/_build/html/_modules/domonic/cmd.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>domonic.cmd &#8212; domonic 0.6.9 documentation</title>
<title>domonic.cmd &#8212; domonic 0.7.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css" />
<script data-url_root="../../" id="documentation_options" src="../../_static/documentation_options.js"></script>
Expand Down Expand Up @@ -60,7 +60,7 @@ <h1>Source code for domonic.cmd</h1><div class="highlight"><pre>
<div class="viewcode-block" id="CmdException"><a class="viewcode-back" href="../../packages/cmd.html#domonic.cmd.CmdException">[docs]</a><span class="k">class</span> <span class="nc">CmdException</span><span class="p">(</span><span class="ne">Exception</span><span class="p">):</span>
<span class="sd">&quot;&quot;&quot; raised if cmd throws an exception &quot;&quot;&quot;</span>

<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">error</span><span class="p">,</span> <span class="n">message</span><span class="o">=</span><span class="s2">&quot;An error message was recieved from cmd&quot;</span><span class="p">):</span>
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">error</span><span class="p">,</span> <span class="n">message</span><span class="p">:</span> <span class="nb">str</span><span class="o">=</span><span class="s2">&quot;An error message was recieved from cmd&quot;</span><span class="p">):</span>
<span class="nb">print</span><span class="p">(</span><span class="n">error</span><span class="p">,</span> <span class="n">message</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">message</span> <span class="o">=</span> <span class="n">message</span>
<span class="nb">super</span><span class="p">()</span><span class="o">.</span><span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">message</span><span class="p">)</span></div>
Expand Down
Loading

0 comments on commit 187bf93

Please sign in to comment.