Ankit Gautam
Ankit Gautam
Is this still open??
Is it still open?
Any updates on this, facing similar issue!! Any help could make it better for me.
I thought adding best practices could help a little more to new comers
Either it is problem with the docker credentials or configuration. I encountered the same on my mac and resolved by correcting the configuration.
`# Base image FROM ubuntu:latest # Set environment variables ENV MY_ENV_VAR="my_value" # Set proxy settings if needed ENV http_proxy="http://your_corporate_proxy_server:8080" ENV https_proxy="http://your_corporate_proxy_server:8080" # Install dependencies from corporate network RUN apt-get update...
It's a minimal change. LGTM
@Viicos I think adding this to monkeytype/type_checking_imports_transformer.py could solve your problem @staticmethod def _add_type_checking_import(source_module: Module, if_type_checking: bool = False) -> Module: context = CodemodContext() transformer = MyAddImportsVisitor(context, if_type_checking) transformed_source_module =...