Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,5 @@ cython_debug/
########################################################################################

# Project specific
exports/*
config.py



examples/config.py
examples/exports/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Change a member's response for an event (e.g. accept/decline)

## Example scripts

The following scripts are included as examples. Some of the scripts might require additional packages to be installed (csv, ical etc).
The following scripts are included in `examples/`. Some of the scripts might require additional packages to be installed (csv, ical etc).

Rename the file `config.py.sample` to `config.py` and add your username and password to the file before running the samples.

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ ignore = [
# In example files:
# - Don't try to sort imports as non-existent `config` module causes issues in CI
# - Don't enforce type annotations for now
"attendance.py" = ["ANN", "I001"]
"groups.py" = ["ANN", "I001"]
"ical.py" = ["ANN", "I001"]
"manual_test_functions.py" = ["I001"]
"transactions.py" = ["ANN", "I001"]
"examples/attendance.py" = ["ANN", "I001"]
"examples/groups.py" = ["ANN", "I001"]
"examples/ical.py" = ["ANN", "I001"]
"examples/manual_test_functions.py" = ["I001"]
"examples/transactions.py" = ["ANN", "I001"]

# In tests:
# - Don't enforce type annotations for now
Expand Down