Skip to content

Commit

Permalink
Merge pull request #1464 from otseng/main
Browse files Browse the repository at this point in the history
Cleanup lint and pytest errors
  • Loading branch information
eliranwong authored Oct 31, 2024
2 parents 0f045a4 + ea8d47a commit 3f4cbd3
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,10 @@ audio/*.json
*.out
audio/._.DS_Store
audio/._Readme.md
uniquebible/audio/bibles/
uniquebible.egg-info/
uniquebible/htmlResources/images/exlbl_largeHD/
uniquebible/venv*/
uniquebible/marvelData/
uniquebible/marvelData_*/
uniquebible/macros/
3 changes: 3 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pytest]
testpaths = tests/
norecursedirs = .git venv*
1 change: 0 additions & 1 deletion tests/test.py

This file was deleted.

2 changes: 2 additions & 0 deletions tests/test_uba.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_uba():
pass
1 change: 1 addition & 0 deletions uniquebible/plugins/context/Strongs2csv/strong2csv.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
'''
A utility to extract Strongs Numbers data into a CSV fi1e.
Can enter one or more numbers, i.e. H25 or H356,G217,G875. Saved file will
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
from __future__ import print_function

import mimetypes
Expand Down
1 change: 1 addition & 0 deletions uniquebible/util/ConfigUtil.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
import codecs
import logging
import os, pprint, platform, sys
Expand Down
1 change: 1 addition & 0 deletions uniquebible/util/LocalCliHandler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
import re, pprint, os, requests, platform, pydoc, markdown, sys, subprocess, json, shutil, webbrowser, traceback, textwrap, wcwidth, unicodedata
from uniquebible import config
import threading, time
Expand Down

0 comments on commit 3f4cbd3

Please sign in to comment.