jfilak / sapcli

Command Line Interface for interaction with SAP tools
Apache License 2.0
56 stars 24 forks source link

gcts: fix listing configuration using URL #93

Closed palubaj closed 2 years ago

palubaj commented 2 years ago

The problem was that, when URL was used the repository already had cached some data, but not config. That meant that on accessing config the fetch_data() was not triggered which led to config beeing None.

Simply deleting cached data upon get the repository instances solved the problem.

jfilak commented 2 years ago

Good job!