Joaquin
Results
2
issues of
Joaquin
``` python if __name__=="__main__": print(__name__) # this should run, no ? ```
bug
good first issue
I have a piece of code that works with pymongo and my cosmos DB uri: ```python from pymongo import MongoClient mongodb_uri = 'mongodb://....' client = MongoClient(mongodb_uri) db = client.foo collection...