As you said, you can't remove this repository with purging or removing skypeforlinux
package.
You should remove that repository file manually.
Skype make its repository's file in /etc/apt/sources.list.d
directory with skype-stable.list
name.
So you should comment all lines of this file with this command:
sudo sed -i 's/^/#/' /etc/apt/sources.list.d/skype-stable.list
And then run this command to apply changes in your repositories:
sudo apt update
Also you can remove that file completely with this command, but the above way (comment all lines) is much safer than it:
sudo rm -rf /etc/apt/sources.list.d/skype-stable.list
apt-get
uses is located in the/etc/apt/sources.list
file and the/etc/apt/sources.list.d
folder. If you remove/purge a package, the repository may remain in the configuration. – Jaime Aug 31 '17 at 14:11