()
| 93 | |
| 94 | |
| 95 | def get_dali_extra_path(): |
| 96 | try: |
| 97 | dali_extra_path = os.environ["DALI_EXTRA_PATH"] |
| 98 | except KeyError: |
| 99 | print("WARNING: DALI_EXTRA_PATH not initialized.", file=sys.stderr) |
| 100 | dali_extra_path = "." |
| 101 | return dali_extra_path |
| 102 | |
| 103 | |
| 104 | # those functions import modules on demand to no impose additional dependency on numpy or matplot |
no test coverage detected