Skip to content

Commit f1ab498

Browse files
committed
chore: cleanup code
Signed-off-by: Gabor Boros <gabor.brs@gmail.com>
1 parent e29f2f0 commit f1ab498

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

CONTRIBUTING.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ As `step 0` make sure you have python 3.10+, [https://python-poetry.org/](poetry
8686
5. When you're done making changes, check that your changes pass linters and the tests::
8787

8888
$ poetry env activate
89-
$ make protobuf
90-
$ make generate-init-pyi
9189
$ make format
9290
$ make lint
9391
$ make test

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,6 @@ protobuf: ## download and convert protobuf file
110110
curl -sqo ${TARGET_PROTO_FILE} ${PROTO_FILE_URL}
111111
python ${FILE_CONVERTER_NAME} -l python -i ${TARGET_PROTO_FILE} -o ${TARGET_CONVERTED_PROTO_FILE}
112112

113-
.PHONY: generate-init-pyi
114-
generate-init-pyi: ## generate __init__.pyi file
115-
python scripts/generate_init_pyi.py
116-
poetry run isort rethinkdb/__init__.pyi
117-
poetry run black rethinkdb/__init__.pyi
118-
119113
.PHONY: test-unit
120114
test-unit: ## run unit tests and generate coverage
121115
poetry run coverage run -m pytest -m "not integration" -vv

README.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ Useful make Commands
112112
+---------------------+---------------------------------------------------------------+
113113
| format | run formatters on the package |
114114
+---------------------+---------------------------------------------------------------+
115-
| generate-init-pyi | generate __init__.pyi file |
116-
+---------------------+---------------------------------------------------------------+
117115
| lint | run linters against the package |
118116
+---------------------+---------------------------------------------------------------+
119117
| protobuf | download and convert protobuf file |

0 commit comments

Comments
 (0)