From ce008f369668ef739aa2d5975568635e6db05283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wieland=20Strau=C3=9F?= Date: Mon, 4 Apr 2022 16:35:03 +0200 Subject: [PATCH] change flag example to a country, that deserve it --- Code-snippets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code-snippets.md b/Code-snippets.md index 3d7c5e8..2dab5f4 100644 --- a/Code-snippets.md +++ b/Code-snippets.md @@ -420,8 +420,8 @@ def flag(code): 'πŸ‡©πŸ‡ͺ' >>> flag('us') 'πŸ‡ΊπŸ‡Έ' ->>> flag('ru') -'πŸ‡·πŸ‡Ί' +>>> flag('ua') +'πŸ‡ΊπŸ‡¦' ``` ---