Revision b99805ae7cbc45d0588ef19dfe26028630e149ec authored by Lukas Berner on 03 April 2024, 09:08:49 UTC, committed by GitHub on 03 April 2024, 09:08:49 UTC
* add attribute getters to python

* remove unused graph object from attribute wrapper classes

* add attribute conversion to nx2nk

* add optional custom type mapping

* fix none case error for type map

* add None to parameter type hints

* fix edgeById for directed graphs

* fix tests, add test for custom typemap

* fix CI

* change print to warn

* update tests to check for warnings
1 parent 28f8ff3
Raw File
.coveragerc
[run]
plugins = Cython.Coverage
omit =
    # omit anything in a .local directory anywhere
    */.local/*
    # omit everything in /usr
    /usr/*
    # omit test-files
    *test*
    # omit init-file
    *__init__*
    # omit memoryviews
    *stringsource*
back to top