Skip to content

Commit 15b5c9f

Browse files
committed
🏇 flake8 cleanup
1 parent 4bc44be commit 15b5c9f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ install:
2727

2828
script:
2929
- make clean
30-
# - make lint
30+
- make lint
3131
- mypy fhirspec.py
3232
- isort -c fhirspec.py
3333
- black --check --verbose fhirspec.py

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ test-all: ## run tests on every Python version with tox
6060
tox
6161

6262
coverage: ## check code coverage quickly with the default Python
63-
coverage run --source src/fhirpath -m pytest
63+
coverage run --source fhirspec.py -m pytest
6464
coverage report -m
6565
coverage html
6666
$(BROWSER) htmlcov/index.html

tests/test_utilities_fhirspec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ def test_download():
2828
"nazrulworld/fhir-parser/master/archives/"
2929
"HL7/FHIR/STU3/3.0.1-version.info"
3030
)
31-
html_file = ""
32-
json_file = ""
31+
html_file = "" # noqa: F841
32+
json_file = "" # noqa: F841
3333
zip_file = (
3434
"https://github.com/nazrulworld/fhir-parser/"
3535
"raw/master/archives/HL7/FHIR/STU3/3.0.2-examples-json.zip"

0 commit comments

Comments
 (0)